| RecognitionRuleConstraintOperator Enumeration |
Represents an operator that is used for comparing the input values within the single recognition rule.
Namespace:
Dynamicweb.Analytics.Profiles.Recognition
Assembly:
Dynamicweb.Analytics (in Dynamicweb.Analytics.dll) Version: 2.1.4
Syntax public enum RecognitionRuleConstraintOperator
Public Enumeration RecognitionRuleConstraintOperator
Members
| Member name | Value | Description |
---|
| Equals | 0 |
Equals.
|
| GreaterThan | 1 |
Greater than.
|
| LessThan | 2 |
Less than.
|
| GreaterThanOrEqualTo | 3 |
Greater than or equal to.
|
| LessThanOrEqualTo | 4 |
Less than or equal to.
|
| NotEqualTo | 5 |
Not equal to.
|
| Contains | 6 |
Contains.
|
| DoesNotContain | 7 |
Does not contain.
|
| StartsWith | 8 |
Starts with.
|
| DoesNotStartWith | 9 |
Does not start with.
|
| EndsWith | 10 |
Ends with.
|
| DoesNotEndWith | 11 |
Does not end with.
|
| InRange | 12 |
In range.
|
| DoesNotInRange | 13 |
Does not in range.
|
See Also