Enum TaskConditionOperator
- Namespace
- XENBIT.ResQueServe.Abstractions.DataStructures
- Assembly
- RQS.Abstractions.dll
Defines the operators that can be used in task conditions.
public enum TaskConditionOperator
- Extension Methods
Fields
Contains = 0Specifies that the condition should check if a value contains a specified substring.
DoesNotContain = 1Specifies that the condition should check if a value does not contain a specified substring.
EndsWith = 3Specifies that the condition should check if a value ends with a specified substring.
Equals = 4Specifies that the condition should check if a value equals a specified string.
StartsWith = 2Specifies that the condition should check if a value starts with a specified substring.
True = 5Specifies that the condition will always be true.