Skip to main content
A newer version of this page is available. .

XPQueryExtensions.EnumerateAsync<T>(IQueryable<T>, CancellationToken) Method

Asynchronously enumerates a specified query.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v18.2.dll

Declaration

public static Task<IEnumerable<T>> EnumerateAsync<T>(
    this IQueryable<T> query,
    CancellationToken cancellationToken = default(CancellationToken)
)

Parameters

Name Type Description
query IQueryable<T>

An XPQuery<T> to be enumerated.

Optional Parameters

Name Type Default Description
cancellationToken CancellationToken *null*

A CancellationToken object that delivers a cancellation notice to the running operation.

Type Parameters

Name
T

Returns

Type Description
Task<IEnumerable<T>>

A Task that returns a collection of enumerated objects.

See Also