FetchDataEventArgs.AsyncResult Property
Gets or sets the Task that allows you to fetch data asynchronously. This is a bindable property.
Namespace: DevExpress.Maui.Scheduler
Assembly: DevExpress.Maui.Scheduler.dll
NuGet Package: DevExpress.Maui.Scheduler
Declaration
public Task<object[]> AsyncResult { get; set; }
Property Value
Type | Description |
---|---|
Task<System.Object[]> | An operation that allows you to fetch data asynchronously. |
Remarks
You can also use the Result property to fetch data.
See Also