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

ICustomAggregate.Process(Object, Object[]) Method

Is called to process every element of a collection supplied to a custom aggregate function.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v20.2.dll

NuGet Packages: DevExpress.Data, DevExpress.WindowsDesktop.Data

Declaration

bool Process(
    object context,
    object[] operands
)

Parameters

Name Type Description
context Object

An object that stores the result’s intermediate state between method calls.

operands Object[]

An operand array to be supplied to an aggregate function.

Returns

Type Description
Boolean

true, if no more elements need to be processed and the final result was acquired, otherwise, false.

Remarks

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

See Also