Skip to main content
A newer version of this page is available. .

VirtualServerModeGetUniqueValuesEventArgs.UniqueValuesTask Property

Gets or sets the task that returns requested values.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v18.2.dll

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