PeerName.CreateFromPeerHostName(String) Method

Definition

Creates a new instance of the specified PeerHostName object with the specified peer host name.

public:
 static System::Net::PeerToPeer::PeerName ^ CreateFromPeerHostName(System::String ^ peerHostName);
[System.Security.SecurityCritical]
public static System.Net.PeerToPeer.PeerName CreateFromPeerHostName (string peerHostName);
[<System.Security.SecurityCritical>]
static member CreateFromPeerHostName : string -> System.Net.PeerToPeer.PeerName
Public Shared Function CreateFromPeerHostName (peerHostName As String) As PeerName

Parameters

peerHostName
String

A string that contains the DNS-qualified host name.

Returns

A PeerName object that represents the specified peer host name.

Attributes

Exceptions

The String provided is not a valid peer host name string.

A PeerName could not be created from the supplied PeerHostName

Remarks

The peer-to-peer host is the "seed node" responsible for initiating the peer-to-peer networking session, inviting peers to participate in applications for which this type of network connectivity is most appropriate for communications such as chat groups or game sessions.

This method can be used to create a PeerName object based on the PeerHostName property. This peer name is not associated with the identity of the calling node.

Applies to

See also