ResolveInfo Constructors

Definition

Initializes a new instance of the ResolveInfo class.

Overloads

ResolveInfo()

Initializes a new default instance of the ResolveInfo class.

ResolveInfo(Guid, String, Int32)

Initializes a new instance of the ResolveInfo class with the provided client ID and mesh ID, as well as the maximum number of endpoint addresses to return.

ResolveInfo()

Initializes a new default instance of the ResolveInfo class.

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

Applies to

ResolveInfo(Guid, String, Int32)

Initializes a new instance of the ResolveInfo class with the provided client ID and mesh ID, as well as the maximum number of endpoint addresses to return.

public:
 ResolveInfo(Guid clientId, System::String ^ meshId, int maxAddresses);
public ResolveInfo (Guid clientId, string meshId, int maxAddresses);
new System.ServiceModel.PeerResolvers.ResolveInfo : Guid * string * int -> System.ServiceModel.PeerResolvers.ResolveInfo
Public Sub New (clientId As Guid, meshId As String, maxAddresses As Integer)

Parameters

clientId
Guid

Guid that contains a unique ID for the client for which endpoints are to be resolved.

meshId
String

String that contains the ID of the mesh in which the client is participating.

maxAddresses
Int32

Int32 that contains the maximum number of client endpoint addresses to be returned by the resolve operation.

Applies to