ProtocolEndpoint Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.