Click or drag to resize

ComparisonOperator Enumeration

/The type of value comparison to perform between an attribute and a value in an XPath query

Namespace:  Lithnet.ResourceManagement.Client
Assembly:  Lithnet.ResourceManagement.Client (in Lithnet.ResourceManagement.Client.dll) Version: 1.0.6435.24467
Syntax
public enum ComparisonOperator
Members
  Member nameValueDescription
Equals0 The attribute is equal to the specified value
NotEquals1 The attribute does not equal the specified value
GreaterThan2 The attribute is greater than the specified value
GreaterThanOrEquals3 The attribute is greater than or equal to the specified value
LessThan4 The attribute is less than the specified value
LessThanOrEquals5 The attribute is less than or equal to the specified value
IsPresent6 The attribute has a value
IsNotPresent7 The attribute does not have a value
Contains8 The attribute contains the specified text
StartsWith9 The attribute starts with the specified text
EndsWith10 The attribute ends with the specified test
See Also