Enumeration of basic comparison operators used in rule and policy conditions.
Namespace: ININ.IceLib.Configuration.Dialer.DataTypesAssembly: ININ.IceLib.Dialer (in ININ.IceLib.Dialer.dll) Version: 0.0.0.0 (22.3.0.208)
Syntax
| C# |
|---|
public enum ComparisonOperator |
| Visual Basic |
|---|
Public Enumeration ComparisonOperator |
Members
| Member name | Value | Description | |
|---|---|---|---|
| LessThan | 0 | The "<" operator. | |
| LessThanOrEqual | 1 | The "<=" operator. | |
| Equal | 2 | The "=" operator. | |
| NotEqual | 3 | The "<>" operator. | |
| GreaterThanOrEqual | 4 | The ">=" operator. | |
| GreaterThan | 5 | The ">" operator. | |
| Regex | 6 | The regular expression operator. |