Udostępnij za pośrednictwem


WebBaseEventCollection(ICollection) Konstruktor

Definicja

Inicjuje nowe wystąpienie klasy 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)

Parametry

events
ICollection

Kolekcja obiektów WebBaseEvent.

Wyjątki

events to null.

Przykłady

W poniższym przykładzie kodu pokazano, jak używać tego konstruktora.


// 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

Uwagi

Konstruktor WebBaseEventCollection(ICollection) umożliwia utworzenie wystąpienia WebBaseEventCollection klasy i zainicjowanie go za pomocą kolekcji WebBaseEvent obiektów.

Dotyczy

Zobacz też