Skip to main content

NotifyingCollection<T>.Contains(Predicate<T>) Method

Determines whether the collection contains an item that matches the specified predicate.

Namespace: DevExpress.DataAccess

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

public bool Contains(
    Predicate<T> match
)

Parameters

Name Type Description
match Predicate<T>

A System.Predicate that specifies the condition used to determine whether the collection contains an item.

Returns

Type Description
Boolean

true, if the collection contains an item that matches the specified predicate; otherwise, false.

See Also