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
Syntaxpublic enum ComparisonOperator
Public Enumeration ComparisonOperator
public enum class ComparisonOperator
Members
| Member name | Value | Description |
---|
| Equals | 0 |
The attribute is equal to the specified value
|
| NotEquals | 1 |
The attribute does not equal the specified value
|
| GreaterThan | 2 |
The attribute is greater than the specified value
|
| GreaterThanOrEquals | 3 |
The attribute is greater than or equal to the specified value
|
| LessThan | 4 |
The attribute is less than the specified value
|
| LessThanOrEquals | 5 |
The attribute is less than or equal to the specified value
|
| IsPresent | 6 |
The attribute has a value
|
| IsNotPresent | 7 |
The attribute does not have a value
|
| Contains | 8 |
The attribute contains the specified text
|
| StartsWith | 9 |
The attribute starts with the specified text
|
| EndsWith | 10 |
The attribute ends with the specified test
|
See Also