Skip to main content

VirtualServerModeGetUniqueValuesEventArgs.UniqueValuesTask Property

Gets or sets the task that returns requested values.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public Task<object[]> UniqueValuesTask { get; set; }

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