TransportConfigurationTypeElement Constructors

Definition

Initializes a new instance of the TransportConfigurationTypeElement class.

Overloads

TransportConfigurationTypeElement()

Initializes a new instance of the TransportConfigurationTypeElement class.

TransportConfigurationTypeElement(String)

Initializes a new instance of the TransportConfigurationTypeElement class with a unique name.

TransportConfigurationTypeElement(String, String)

Initializes a new instance of the TransportConfigurationTypeElement class with a unique name, and the type that implements the specific transport.

TransportConfigurationTypeElement()

Initializes a new instance of the TransportConfigurationTypeElement class.

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

Applies to

TransportConfigurationTypeElement(String)

Initializes a new instance of the TransportConfigurationTypeElement class with a unique name.

public:
 TransportConfigurationTypeElement(System::String ^ name);
public TransportConfigurationTypeElement (string name);
new System.ServiceModel.Configuration.TransportConfigurationTypeElement : string -> System.ServiceModel.Configuration.TransportConfigurationTypeElement
Public Sub New (name As String)

Parameters

name
String

A string that uniquely identifies the transport type.

Exceptions

name is null.

Applies to

TransportConfigurationTypeElement(String, String)

Initializes a new instance of the TransportConfigurationTypeElement class with a unique name, and the type that implements the specific transport.

public:
 TransportConfigurationTypeElement(System::String ^ name, System::String ^ transportConfigurationTypeName);
public TransportConfigurationTypeElement (string name, string transportConfigurationTypeName);
new System.ServiceModel.Configuration.TransportConfigurationTypeElement : string * string -> System.ServiceModel.Configuration.TransportConfigurationTypeElement
Public Sub New (name As String, transportConfigurationTypeName As String)

Parameters

name
String

A string that uniquely identifies the transport type.

transportConfigurationTypeName
String

The type that implements the specific transport.

Exceptions

name or transportConfigurationTypeName is null.

Applies to