AddressHeaderCollection Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy AddressHeaderCollection.
Przeciążenia
AddressHeaderCollection() |
Inicjuje nowe wystąpienie klasy AddressHeaderCollection. |
AddressHeaderCollection(IEnumerable<AddressHeader>) |
Inicjuje AddressHeaderCollection nowe wystąpienie klasy z wyliczalnego zestawu nagłówków adresów. |
AddressHeaderCollection()
- Źródło:
- AddressHeaderCollection.cs
- Źródło:
- AddressHeaderCollection.cs
- Źródło:
- AddressHeaderCollection.cs
Inicjuje nowe wystąpienie klasy AddressHeaderCollection.
public:
AddressHeaderCollection();
public AddressHeaderCollection ();
Public Sub New ()
Przykłady
Poniższy fragment kodu ilustruje sposób tworzenia wystąpienia klasy za pomocą konstruktora bez parametrów AddressHeaderCollection .
Dotyczy
AddressHeaderCollection(IEnumerable<AddressHeader>)
- Źródło:
- AddressHeaderCollection.cs
- Źródło:
- AddressHeaderCollection.cs
- Źródło:
- AddressHeaderCollection.cs
Inicjuje AddressHeaderCollection nowe wystąpienie klasy z wyliczalnego zestawu nagłówków adresów.
public:
AddressHeaderCollection(System::Collections::Generic::IEnumerable<System::ServiceModel::Channels::AddressHeader ^> ^ addressHeaders);
public AddressHeaderCollection (System.Collections.Generic.IEnumerable<System.ServiceModel.Channels.AddressHeader> addressHeaders);
new System.ServiceModel.Channels.AddressHeaderCollection : seq<System.ServiceModel.Channels.AddressHeader> -> System.ServiceModel.Channels.AddressHeaderCollection
Public Sub New (addressHeaders As IEnumerable(Of AddressHeader))
Parametry
- addressHeaders
- IEnumerable<AddressHeader>
IEnumerable<T> Zestaw AddressHeader obiektów używanych do inicjowania kolekcji.
Wyjątki
Jeden z nagłówków adresów w parametrze addressHeaders
to null
.
Przykłady
Poniższy fragment kodu ilustruje sposób tworzenia wystąpienia AddressHeaderCollection klasy.