KnownConditionOperator enum

Defines operators used in filter conditions.

Fields

Contains

Contains the value.

Equal

Equal to.

GreaterThan

Greater than.

GreaterThanOrEqual

Greater than or equal to.

In

Matches when value is one of the items in the ^^-delimited list (for example, value = "east^^west^^north").

LessThan

Less than.

LessThanOrEqual

Less than or equal to.

NotContains

Does not contain the value.

NotEqual

Not equal to.

NotIn

Matches when value is none of the items in the ^^-delimited list (for example, value = "east^^west^^north").

NotStartsWith

Does not start with.

StartsWith

Starts with.