WebBaseEventCollection(ICollection) Constructor

Definition

Initializes a new instance of the WebBaseEventCollection class.

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)

Parameters

events
ICollection

The collection of WebBaseEvent objects.

Exceptions

events is null.

Examples

The following code example shows how to use this constructor.


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

Remarks

The WebBaseEventCollection(ICollection) constructor allows you to create an instance of the WebBaseEventCollection class and initialize it with a collection of WebBaseEvent objects.

Applies to

See also