Skip to main content

GridDevExtremeDataSource<T>.GetItemsAsync(GridCustomDataSourceItemsOptions, CancellationToken) Method

Returns a collection of data source items selected according to specified options.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public override Task<IList> GetItemsAsync(
    GridCustomDataSourceItemsOptions options,
    CancellationToken cancellationToken
)

Parameters

Name Type Description
options GridCustomDataSourceItemsOptions

An object that contains options.

cancellationToken CancellationToken

An object that propagates a cancellation notification.

Returns

Type Description
Task<IList>

An asynchronous operation that returns an item collection.

Remarks

Do not call this method directly - the grid calls this method automatically.

See Also