Skip to main content

ICustomAggregate.GetResult(Object) Method

Gets a custom aggregate function‘s result.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

object GetResult(
    object context
)

Parameters

Name Type Description
context Object

An object that stores the result’s intermediate state between the Process(Object, Object[]) method calls.

Returns

Type Description
Object

A custom aggregate function’s result.

Remarks

This method is called automatically if the aggregate function is calculated on the client side.

See Also