Skip to main content
All docs
V23.2

IListBox<TData, TValue>.DataAsync Property

Specifies an asynchronous function that returns List Box data.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(null)]
Func<CancellationToken, Task<IEnumerable<TData>>> DataAsync { get; set; }

Property Value

Type Default Description
Func<CancellationToken, Task<IEnumerable<TData>>> null

A function that returns List Box data.

Remarks

Refer to the DataAsync property description for more information and an example.

See Also