ConnectionInterfaceCollection コンストラクター

定義

ConnectionInterfaceCollection クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
ConnectionInterfaceCollection()

ConnectionInterfaceCollection クラスの新しいインスタンスを初期化します。

ConnectionInterfaceCollection(ICollection)

指定したコレクションを使用して、 ConnectionInterfaceCollection クラスの新しいインスタンスを初期化します。

ConnectionInterfaceCollection(ConnectionInterfaceCollection, ICollection)

指定した 2 つのコレクションを組み合わせて、 ConnectionInterfaceCollection クラスの新しいインスタンスを初期化します。

ConnectionInterfaceCollection()

ConnectionInterfaceCollection クラスの新しいインスタンスを初期化します。

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

適用対象

ConnectionInterfaceCollection(ICollection)

指定したコレクションを使用して、 ConnectionInterfaceCollection クラスの新しいインスタンスを初期化します。

public:
 ConnectionInterfaceCollection(System::Collections::ICollection ^ connectionInterfaces);
public ConnectionInterfaceCollection(System.Collections.ICollection connectionInterfaces);
new System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection : System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection
Public Sub New (connectionInterfaces As ICollection)

パラメーター

connectionInterfaces
ICollection

ConnectionInterfaceCollectionに変換するオブジェクトのコレクション。

例外

connectionInterfaces内のオブジェクトをConnectionInterfaceCollection コレクションに追加することはできません。

適用対象

ConnectionInterfaceCollection(ConnectionInterfaceCollection, ICollection)

指定した 2 つのコレクションを組み合わせて、 ConnectionInterfaceCollection クラスの新しいインスタンスを初期化します。

public:
 ConnectionInterfaceCollection(System::Web::UI::WebControls::WebParts::ConnectionInterfaceCollection ^ existingConnectionInterfaces, System::Collections::ICollection ^ connectionInterfaces);
public ConnectionInterfaceCollection(System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection existingConnectionInterfaces, System.Collections.ICollection connectionInterfaces);
new System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection : System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection * System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.ConnectionInterfaceCollection
Public Sub New (existingConnectionInterfaces As ConnectionInterfaceCollection, connectionInterfaces As ICollection)

パラメーター

existingConnectionInterfaces
ConnectionInterfaceCollection

connectionInterfaces オブジェクトと結合するConnectionInterfaceCollection

connectionInterfaces
ICollection

existingConnectionInterfaces オブジェクトと結合するコレクション。

例外

connectionInterfaces内のオブジェクトをConnectionInterfaceCollection コレクションに追加することはできません。

適用対象