Version

ComparisonOperator Enumeration

Enum describing operators which can be used for filtering.
Syntax
'Declaration
 
Public Enum ComparisonOperator 
   Inherits System.Enum
public enum ComparisonOperator : System.Enum 
Members
MemberDescription
ContainsEvaluates if a string contains a compared value. With string values, a case sensitivity flag may effect the result.
DoesNotContainEvaluates if a string does not contain a compared value. With string values, a case sensitivity flag may effect the result.
DoesNotEndWithEvaluates if a string does not end with a compared value. With string values, a case sensitivity flag may effect the result.
DoesNotStartWithEvaluates if a string does not begin with a compared value. With string values, a case sensitivity flag may effect the result.
EndsWithEvaluates if a string ends with a compared value. With string values, a case sensitivity flag may effect the result.
EqualsAn equality compare is executed. With string values, a case sensitivity flag may effect the result.
GreaterThanA GreaterThan compare is executed. With string values, a case sensitivity flag may effect the result.
GreaterThanOrEqualA greater than or equal compare is executed. With string values, a case sensitivity flag may effect the result.
LessThanA less than compare is executed. With string values, a case sensitivity flag may effect the result.
LessThanOrEqualA less than or equal compare is executed. With string values, a case sensitivity flag may effect the result.
NotEqualsAn non equality compare is executed. With string values, a case sensitivity flag may effect the result.
StartsWithEvaluates if a string begins with a compared value. With string values, a case sensitivity flag may effect the result.
Requirements

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

See Also