'Declaration Public Enum ConditionOperator Inherits System.Enum
public enum ConditionOperator : System.Enum
Member | Description |
---|---|
Contains | Tests to see if the condition value contains the operand. |
DoesNotContain | Complement of Contains. |
DoesNotEndWith | Complement of EndsWith. |
DoesNotMatch | Complement of Match. |
DoesNotStartWith | Complement of StartsWith. |
EndsWith | Tests to see if the condition value ends with the operand. |
Equals | Tests for two values being equal. |
GreaterThan | Tests for the condition's value being greater than the value. |
GreaterThanOrEqualTo | Tests for the condition's value being greater than or equal to the value. |
IsNullOrEmpty | Tests to see if a value equal to null, DBNull.Value, or an empty string. |
LessThan | Tests for the condition's value being less than the value. |
LessThanOrEqualTo | Tests for the condition's value being less than or equal to the value. |
Like | Will do a wildcard comparision of the condition's value to the comparision value taking comparision value as the string with wild cards. |
Match | Will do a regular expression comparision of the condition's value to the comparision value taking comparision value as regular expression string. |
NotEquals | Tests for two values being not equal. |
NotLike | Complement of Like. |
StartsWith | Tests to see if the condition value starts with the operand. |
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