Table of Contents

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 = 0

Specifies that the condition should check if a value contains a specified substring.

DoesNotContain = 1

Specifies that the condition should check if a value does not contain a specified substring.

EndsWith = 3

Specifies that the condition should check if a value ends with a specified substring.

Equals = 4

Specifies that the condition should check if a value equals a specified string.

StartsWith = 2

Specifies that the condition should check if a value starts with a specified substring.

True = 5

Specifies that the condition will always be true.