'Declaration Public Enum ComparisonOperator Inherits System.Enum
public enum ComparisonOperator : System.Enum
Member | Description |
---|---|
Contains | Evaluates if a string contains a compared value. With string values, a case sensitivity flag may effect the result. |
DoesNotContain | Evaluates if a string does not contain a compared value. With string values, a case sensitivity flag may effect the result. |
DoesNotEndWith | Evaluates if a string does not end with a compared value. With string values, a case sensitivity flag may effect the result. |
DoesNotStartWith | Evaluates if a string does not begin with a compared value. With string values, a case sensitivity flag may effect the result. |
EndsWith | Evaluates if a string ends with a compared value. With string values, a case sensitivity flag may effect the result. |
Equals | An equality compare is executed. With string values, a case sensitivity flag may effect the result. |
GreaterThan | A GreaterThan compare is executed. With string values, a case sensitivity flag may effect the result. |
GreaterThanOrEqual | A greater than or equal compare is executed. With string values, a case sensitivity flag may effect the result. |
LessThan | A less than compare is executed. With string values, a case sensitivity flag may effect the result. |
LessThanOrEqual | A less than or equal compare is executed. With string values, a case sensitivity flag may effect the result. |
NotEquals | An non equality compare is executed. With string values, a case sensitivity flag may effect the result. |
StartsWith | Evaluates if a string begins with a compared value. With string values, a case sensitivity flag may effect the result. |
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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