次の方法で共有


WebBaseEventCollection(ICollection) コンストラクター

定義

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

public:
 WebBaseEventCollection(System::Collections::ICollection ^ events);
public WebBaseEventCollection (System.Collections.ICollection events);
new System.Web.Management.WebBaseEventCollection : System.Collections.ICollection -> System.Web.Management.WebBaseEventCollection
Public Sub New (events As ICollection)

パラメーター

events
ICollection

WebBaseEvent オブジェクトのコレクション。

例外

eventsnullです。

次のコード例は、このコンストラクターを使用する方法を示しています。


// Create an event collection.
// Add to it the created simulatedEvents.
public static void AddEvents()
{
    events = 
    new System.Web.Management.WebBaseEventCollection(
    simulatedEvents);
}
' Create an event collection.
' Add to it the created simulatedEvents.
Public Shared Sub AddEvents() 
    events = _
    New System.Web.Management.WebBaseEventCollection(simulatedEvents)

End Sub

注釈

WebBaseEventCollection(ICollection)コンストラクターを使用すると、クラスのインスタンスをWebBaseEventCollection作成し、オブジェクトのWebBaseEventコレクションを使用して初期化できます。

適用対象

こちらもご覧ください