Click or drag to resize

ContentQueryFilterOperator Enumeration

Identifies an operator used in a ContentQueryFilter object.

Namespace:  Packflow.Modeling
Assembly:  MicaSystems.Packflow.Core (in MicaSystems.Packflow.Core.dll) Version: 1.0.0.0 (3.2.0.306)
Syntax
C#
public enum ContentQueryFilterOperator
Members
  Member nameValueDescription
Equal0 Checks if the column value is equal to a given value.
NotEqual1

Checks if the column value is different to a given value.

Greater2 Checks if the column value is greater than a given value.
Less3 Checks if the column value is less than a given value.
GreaterOrEqual4 Checks if the column value is greater or equal than a given value.
LessOrEqual5 Checks if the column value is less or equal than a given value.
BeginsWith6 Checks if the column value starts with a given value.
EndsWith7 Checks if the column value ends with a given value.
Contains8 Checks if the column value contains a given value.
NotContains9 Checks if the column value does not contain a given value.
IsNull10 Checks if the column value is null.
IsNotNull11 Checks if the column value is not null.
See Also