CepWindowExtensionMethods.Sum<TPayload> Method (CepWindow<TPayload>, Expression<Func<TPayload, Int32>>)
Computes the sum of all events in a window. The value to compute the sum over is defined in the input expression parameter.
Namespace: Microsoft.ComplexEventProcessing.Linq
Assembly: Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)
Syntax
public static int Sum<TPayload>(
this CepWindow<TPayload> window,
Expression<Func<TPayload, int>> input
)
Type Parameters
- TPayload
Payload type of window events.
Parameters
- window
Type: Microsoft.ComplexEventProcessing.Linq.CepWindow<TPayload>
The window that the sum is computed over.
- input
Type: System.Linq.Expressions.Expression<Func<TPayload, Int32>>
Lambda expression which defines the input value for the summation based on an input event.
Return Value
Type: System.Int32
A value that contains the result of the summation.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type CepWindow<TPayload>. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=sql.105) or https://msdn.microsoft.com/en-us/library/bb383977(v=sql.105).