Click or drag to resize

ExpressionsRange Method

Between (or range).

Namespace:  com.espertech.esper.common.client.soda
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
public static BetweenExpression Range(
	Expression datapoint,
	Expression lowBoundary,
	Expression highBoundary,
	bool isLowIncluded,
	bool isHighIncluded
)

Parameters

datapoint
Type: com.espertech.esper.common.client.sodaExpression
returns the datapoint to check range
lowBoundary
Type: com.espertech.esper.common.client.sodaExpression
returns values for the lower boundary
highBoundary
Type: com.espertech.esper.common.client.sodaExpression
returns values for the upper boundary
isLowIncluded
Type: SystemBoolean
true to indicate lower boundary itself is included in the range
isHighIncluded
Type: SystemBoolean
true to indicate upper boundary itself is included in the range

Return Value

Type: BetweenExpression
expression
See Also