UpdateInfo Constructors

Definition

Initializes a new instance of the UpdateInfo class.

Overloads

UpdateInfo()

Initializes a new default instance of the UpdateInfo class.

UpdateInfo(Guid, Guid, String, PeerNodeAddress)

Initializes a new instance of the UpdateInfo class with the supplied peer client ID, registration ID, peer mesh ID, and peer endpoint address.

UpdateInfo()

Initializes a new default instance of the UpdateInfo class.

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

Applies to

UpdateInfo(Guid, Guid, String, PeerNodeAddress)

Initializes a new instance of the UpdateInfo class with the supplied peer client ID, registration ID, peer mesh ID, and peer endpoint address.

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

Parameters

registrationId
Guid

Guid that specifies the unique ID of the registration entry to update.

client
Guid

Guid that specifies the unique ID of the peer client that submitted the updated registration entry information.

meshId
String

String that contains the mesh ID of the entry.

address
PeerNodeAddress

PeerNodeAddress that contains the endpoint address to update for the registration entry.

Remarks

A peer can have multiple entries for any mesh ID, each for a specific peer endpoint. Each endpoint entry is updated separately.

Applies to