BindingElementCollection Constructors

Definition

Initializes a new instance of the BindingElementCollection class.

Overloads

BindingElementCollection()

Initializes a new instance of the BindingElementCollection class.

BindingElementCollection(IEnumerable<BindingElement>)

Initializes a new instance of the BindingElementCollection class from an enumerable set of binding elements.

BindingElementCollection(BindingElement[])

Initializes a new instance of the BindingElementCollection class from an array of binding elements.

BindingElementCollection()

Source:
BindingElementCollection.cs
Source:
BindingElementCollection.cs
Source:
BindingElementCollection.cs

Initializes a new instance of the BindingElementCollection class.

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

Applies to

BindingElementCollection(IEnumerable<BindingElement>)

Source:
BindingElementCollection.cs
Source:
BindingElementCollection.cs
Source:
BindingElementCollection.cs

Initializes a new instance of the BindingElementCollection class from an enumerable set of binding elements.

public:
 BindingElementCollection(System::Collections::Generic::IEnumerable<System::ServiceModel::Channels::BindingElement ^> ^ elements);
public BindingElementCollection (System.Collections.Generic.IEnumerable<System.ServiceModel.Channels.BindingElement> elements);
new System.ServiceModel.Channels.BindingElementCollection : seq<System.ServiceModel.Channels.BindingElement> -> System.ServiceModel.Channels.BindingElementCollection
Public Sub New (elements As IEnumerable(Of BindingElement))

Parameters

elements
IEnumerable<BindingElement>

The IEnumerable<T> of generic type BindingElement used to initialize the collection.

Exceptions

elements is null.

Applies to

BindingElementCollection(BindingElement[])

Source:
BindingElementCollection.cs
Source:
BindingElementCollection.cs
Source:
BindingElementCollection.cs

Initializes a new instance of the BindingElementCollection class from an array of binding elements.

public:
 BindingElementCollection(cli::array <System::ServiceModel::Channels::BindingElement ^> ^ elements);
public BindingElementCollection (System.ServiceModel.Channels.BindingElement[] elements);
new System.ServiceModel.Channels.BindingElementCollection : System.ServiceModel.Channels.BindingElement[] -> System.ServiceModel.Channels.BindingElementCollection
Public Sub New (elements As BindingElement())

Parameters

elements
BindingElement[]

The Array of type BindingElement used to initialize the collection.

Exceptions

elements is null.

Applies to