Specifies the types of comparison operations used in status events.
| C# | Visual Basic |
public enum StatusComparisonType
Public Enumeration StatusComparisonType
| Member | Description |
|---|---|
| AnyChange |
Any state change. This is the default value.
|
| Equal |
The state values are equal.
|
| NotEqual |
The state values are not equal.
|
| Greater |
The comparison value is greater than the state value.
|
| GreaterOrEqual |
The comparison value is greater than or equal to the state value.
|
| Less |
The comparison value is less than the state value.
|
| LessOrEqual |
The comparison value is less than or equal to the state value.
|
| Contains |
The state value contains the comparison value (strings only).
|
| StartsWith |
The state value begins with the comparison value (strings only).
|
| EndsWith |
The state value ends with the comparison value (strings only).
|