AddressHeaderCollection 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 AddressHeaderCollection 類別的新執行個體。
多載
AddressHeaderCollection() |
初始化 AddressHeaderCollection 類別的新執行個體。 |
AddressHeaderCollection(IEnumerable<AddressHeader>) |
從位址標頭的可列舉集合初始化 AddressHeaderCollection 類別的新執行個體。 |
AddressHeaderCollection()
初始化 AddressHeaderCollection 類別的新執行個體。
public:
AddressHeaderCollection();
public AddressHeaderCollection ();
Public Sub New ()
範例
下列代碼段說明如何使用無參數建構函式建立 類別的 AddressHeaderCollection 實例。
適用於
AddressHeaderCollection(IEnumerable<AddressHeader>)
從位址標頭的可列舉集合初始化 AddressHeaderCollection 類別的新執行個體。
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))
參數
- addressHeaders
- IEnumerable<AddressHeader>
用來初始化集合之 IEnumerable<T> 物件的 AddressHeader 集合。
例外狀況
addressHeaders
參數內的其中一個位址標頭為 null
。
範例
下列程式碼片段會示範如何建立 AddressHeaderCollection 類別的執行個體。