WebBaseEventCollection.Contains(WebBaseEvent) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Koleksiyonun belirtilen WebBaseEvent nesneyi içerip içermediğini gösterir.
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
Parametreler
- value
- WebBaseEvent
Aranacak WebBaseEvent nesne.
Döndürülenler
true
koleksiyon belirtilen öğeyi içeriyorsa; aksi takdirde , false
.
Örnekler
Aşağıdaki kod örneği özelliğinin Contains nasıl kullanılacağını gösterir.
// 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