ChannelEndpointElement Constructors

Definition

Initializes a new instance of the ChannelEndpointElement class.

Overloads

ChannelEndpointElement()

Initializes a new instance of the ChannelEndpointElement class.

ChannelEndpointElement(EndpointAddress, String)

Initializes a new instance of the ChannelEndpointElement class with the specified endpoint address and contract type.

ChannelEndpointElement()

Initializes a new instance of the ChannelEndpointElement class.

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

Applies to

ChannelEndpointElement(EndpointAddress, String)

Initializes a new instance of the ChannelEndpointElement class with the specified endpoint address and contract type.

public:
 ChannelEndpointElement(System::ServiceModel::EndpointAddress ^ address, System::String ^ contractType);
public ChannelEndpointElement (System.ServiceModel.EndpointAddress address, string contractType);
new System.ServiceModel.Configuration.ChannelEndpointElement : System.ServiceModel.EndpointAddress * string -> System.ServiceModel.Configuration.ChannelEndpointElement
Public Sub New (address As EndpointAddress, contractType As String)

Parameters

address
EndpointAddress

Specifies the address of the endpoint. The default is an empty string. The address must be an absolute URI.

contractType
String

A string that indicates which contract this endpoint is exposing. The assembly must implement the contract type.

Applies to