BindingElementCollection Construtores
Definição
Inicializa uma nova instância da classe BindingElementCollection.Initializes a new instance of the BindingElementCollection class.
Sobrecargas
| BindingElementCollection() |
Inicializa uma nova instância da classe BindingElementCollection.Initializes a new instance of the BindingElementCollection class. |
| BindingElementCollection(IEnumerable<BindingElement>) |
Inicializa a nova instância da classe BindingElementCollection de um conjunto enumerável de elementos de associação.Initializes a new instance of the BindingElementCollection class from an enumerable set of binding elements. |
| BindingElementCollection(BindingElement[]) |
Inicializa a nova instância da classe BindingElementCollection de uma matriz de elementos de associação.Initializes a new instance of the BindingElementCollection class from an array of binding elements. |
BindingElementCollection()
Inicializa uma nova instância da classe BindingElementCollection.Initializes a new instance of the BindingElementCollection class.
public:
BindingElementCollection();
public BindingElementCollection ();
Public Sub New ()
Aplica-se a
BindingElementCollection(IEnumerable<BindingElement>)
Inicializa a nova instância da classe BindingElementCollection de um conjunto enumerável de elementos de associação.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))
Parâmetros
- elements
- IEnumerable<BindingElement>
O IEnumerable<T> de tipo genérico BindingElement usado para inicializar a coleção.The IEnumerable<T> of generic type BindingElement used to initialize the collection.
Exceções
elements é null.elements is null.
Aplica-se a
BindingElementCollection(BindingElement[])
Inicializa a nova instância da classe BindingElementCollection de uma matriz de elementos de associação.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())
Parâmetros
- elements
- BindingElement[]
O Array do tipo BindingElement usado para inicializar a coleção.The Array of type BindingElement used to initialize the collection.
Exceções
elements é null.elements is null.