ServiceMetadataEndpoint Constructors

Definition

Creates and initializes a new instance of the ServiceMetadataEndpoint class.

Overloads

ServiceMetadataEndpoint()

Creates and initializes a new instance of the ServiceMetadataEndpoint class.

ServiceMetadataEndpoint(EndpointAddress)

Creates and initializes a new instance of the ServiceMetadataEndpoint class using the specified endpoint address.

ServiceMetadataEndpoint(Binding, EndpointAddress)

Creates and initializes a new instance of the ServiceMetadataEndpoint class using the specified binding and endpoint address.

ServiceMetadataEndpoint()

Creates and initializes a new instance of the ServiceMetadataEndpoint class.

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

Applies to

ServiceMetadataEndpoint(EndpointAddress)

Creates and initializes a new instance of the ServiceMetadataEndpoint class using the specified endpoint address.

public:
 ServiceMetadataEndpoint(System::ServiceModel::EndpointAddress ^ address);
public ServiceMetadataEndpoint (System.ServiceModel.EndpointAddress address);
new System.ServiceModel.Description.ServiceMetadataEndpoint : System.ServiceModel.EndpointAddress -> System.ServiceModel.Description.ServiceMetadataEndpoint
Public Sub New (address As EndpointAddress)

Parameters

address
EndpointAddress

The endpoint address.

Applies to

ServiceMetadataEndpoint(Binding, EndpointAddress)

Creates and initializes a new instance of the ServiceMetadataEndpoint class using the specified binding and endpoint address.

public:
 ServiceMetadataEndpoint(System::ServiceModel::Channels::Binding ^ binding, System::ServiceModel::EndpointAddress ^ address);
public ServiceMetadataEndpoint (System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress address);
new System.ServiceModel.Description.ServiceMetadataEndpoint : System.ServiceModel.Channels.Binding * System.ServiceModel.EndpointAddress -> System.ServiceModel.Description.ServiceMetadataEndpoint
Public Sub New (binding As Binding, address As EndpointAddress)

Parameters

binding
Binding

The binding to use for the service metadata endpoint.

address
EndpointAddress

The endpoint address.

Applies to