Edit

Share via


ProtocolEndpoint Constructors

Definition

Initializes a new instance of the ProtocolEndpoint class.

Overloads

ProtocolEndpoint()

Initializes a new instance of the ProtocolEndpoint class.

ProtocolEndpoint(Uri, Uri)

Initializes a new instance of the ProtocolEndpoint class that has the specified binding and ___location.

ProtocolEndpoint()

Initializes a new instance of the ProtocolEndpoint class.

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

Remarks

The Binding property and the Location property are both initialized to null in the new instance.

Applies to

ProtocolEndpoint(Uri, Uri)

Initializes a new instance of the ProtocolEndpoint class that has the specified binding and ___location.

public:
 ProtocolEndpoint(Uri ^ binding, Uri ^ ___location);
public ProtocolEndpoint(Uri binding, Uri ___location);
new System.IdentityModel.Metadata.ProtocolEndpoint : Uri * Uri -> System.IdentityModel.Metadata.ProtocolEndpoint
Public Sub New (binding As Uri, ___location As Uri)

Parameters

binding
Uri

The URI that represents the binding for the new instance. Initializes the Binding property.

___location
Uri

The URI that represents the ___location for the new instance. Initializes the Location property.

Applies to