RegisterInfo Constructors

Definition

Initializes a new instance of the RegisterInfo class.

Overloads

RegisterInfo()

Initializes a new default instance of the RegisterInfo class.

RegisterInfo(Guid, String, PeerNodeAddress)

Initializes a new instance of the RegisterInfo class with the supplied client ID, mesh ID, and endpoint address(es).

RegisterInfo()

Initializes a new default instance of the RegisterInfo class.

public:
 RegisterInfo();
public RegisterInfo ();
Public Sub New ()

Applies to

RegisterInfo(Guid, String, PeerNodeAddress)

Initializes a new instance of the RegisterInfo class with the supplied client ID, mesh ID, and endpoint address(es).

public:
 RegisterInfo(Guid client, System::String ^ meshId, System::ServiceModel::PeerNodeAddress ^ address);
public RegisterInfo (Guid client, string meshId, System.ServiceModel.PeerNodeAddress address);
new System.ServiceModel.PeerResolvers.RegisterInfo : Guid * string * System.ServiceModel.PeerNodeAddress -> System.ServiceModel.PeerResolvers.RegisterInfo
Public Sub New (client As Guid, meshId As String, address As PeerNodeAddress)

Parameters

client
Guid

Guid that uniquely identifies the peer node to be registered.

meshId
String

String that specifies the ID of the mesh in which the peer node participates.

address
PeerNodeAddress

PeerNodeAddress that specifies the endpoint address(es) of the peer node to be registered.

Applies to