Enum CompareOp
Comparison operator applied between a field value and a predicate threshold.
public enum CompareOp : byte
Fields
Equal = 0Field equals the threshold.
GreaterThan = 2Field is strictly greater than the threshold.
GreaterThanOrEqual = 4Field is greater than or equal to the threshold.
LessThan = 3Field is strictly less than the threshold.
LessThanOrEqual = 5Field is less than or equal to the threshold.
NotEqual = 1Field does not equal the threshold.