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

VirtualServerModeTotalSummaryEventArgs.TotalSummaryTask Property

Gets or sets the task that returns the requested summary value.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v19.2.dll

Declaration

public Task<IDictionary<ServerModeSummaryDescriptor, object>> TotalSummaryTask { get; set; }

Property Value

Type Description
Task<IDictionary<DevExpress.Data.ServerModeSummaryDescriptor, Object>>

A Task that returns a summary value.

Remarks

The TotalSummaryTask must return an IDictionary<ServerModeSummaryDescriptor, Object> with values for all requested summaries.

See Also