WebBaseEventCollection(ICollection) Costruttore

Definizione

Inizializza una nuova istanza della classe 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)

Parametri

events
ICollection

Raccolta di oggetti WebBaseEvent.

Eccezioni

events è null.

Esempio

Nell'esempio di codice seguente viene illustrato come usare questo costruttore.


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

Commenti

Il WebBaseEventCollection(ICollection) costruttore consente di creare un'istanza della WebBaseEventCollection classe e inizializzarla con una raccolta di WebBaseEvent oggetti .

Si applica a

Vedi anche