VirtualServerModeGetUniqueValuesEventArgs.UniqueValuesTask Property
Gets or sets the task that returns requested values.
Namespace: DevExpress.Data
Assembly: DevExpress.Data.v24.1.dll
NuGet Package: DevExpress.Data
Declaration
Property Value
Type | Description |
---|---|
Task<Object[]> | A Task that returns requested values. |
Remarks
Tip
A Task typically executes asynchronously. To return a batch of rows synchronously, create the task with the Task.FromResult method (available in .NET Framework 4.5+).
See Also