Click or drag to resize

BetweenFilter Constructor (String, IComparable, IComparable, Boolean, Boolean)

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Construct a BetweenFilter for testing "Between" condition.

Namespace:  Tangosol.Util.Filter
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public BetweenFilter(
	string method,
	IComparable lower,
	IComparable upper,
	bool includeLower,
	bool includeUpper
)

Parameters

method
Type: SystemString
The name of the member to invoke via reflection.
lower
Type: SystemIComparable
The lower bound of the range of values that evaluate to true
upper
Type: SystemIComparable
The upper bound of the range of values that evaluate to true
includeLower
Type: SystemBoolean
A flag indicating whether values matching the lower bound of the range evaluate to true
includeUpper
Type: SystemBoolean
A flag indicating whether values matching the upper bound of the range evaluate to true
See Also