Version

ConditionOperator Enumeration

Enum for specifying the comparision operator of a OperatorCondition.
Syntax
'Declaration
 
Public Enum ConditionOperator 
   Inherits System.Enum
public enum ConditionOperator : System.Enum 
Members
MemberDescription
ContainsTests to see if the condition value contains the operand.
DoesNotContainComplement of Contains.
DoesNotEndWithComplement of EndsWith.
DoesNotMatchComplement of Match.
DoesNotStartWithComplement of StartsWith.
EndsWithTests to see if the condition value ends with the operand.
EqualsTests for two values being equal.
GreaterThanTests for the condition's value being greater than the value.
GreaterThanOrEqualToTests for the condition's value being greater than or equal to the value.
IsNullOrEmptyTests to see if a value equal to null, DBNull.Value, or an empty string.
LessThanTests for the condition's value being less than the value.
LessThanOrEqualToTests for the condition's value being less than or equal to the value.
LikeWill do a wildcard comparision of the condition's value to the comparision value taking comparision value as the string with wild cards.
MatchWill do a regular expression comparision of the condition's value to the comparision value taking comparision value as regular expression string.
NotEqualsTests for two values being not equal.
NotLikeComplement of Like.
StartsWithTests to see if the condition value starts with the operand.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also