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.v25.1.dll
NuGet Package: DevExpress.Data
Declaration
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