WebBaseEventCollection(ICollection) コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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 オブジェクトのコレクション。
例外
events
が null
です。
例
次のコード例は、このコンストラクターを使用する方法を示しています。
// 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コレクションを使用して初期化できます。