WebBaseEventCollection.Contains(WebBaseEvent) Method

Definition

Indicates whether the collection contains the specified WebBaseEvent object.

public:
 bool Contains(System::Web::Management::WebBaseEvent ^ value);
public bool Contains (System.Web.Management.WebBaseEvent value);
member this.Contains : System.Web.Management.WebBaseEvent -> bool
Public Function Contains (value As WebBaseEvent) As Boolean

Parameters

value
WebBaseEvent

The WebBaseEvent object to search for.

Returns

true if the collection contains the specified element; otherwise, false.

Examples

The following code example shows how to use the Contains property.

// Check if the specified event is in the collection.
public static bool ContainsEvent(WebBaseEvent ev)
{
    return events.Contains(ev);
}
' Chek if the specified event is in the collection.
Public Shared Function ContainsEvent(ByVal ev _
As WebBaseEvent) As Boolean
    Return events.Contains(ev)

End Function 'ContainsEvent

Applies to

See also