ValueOperator Enumeration |
A list of possible comparison operators
Namespace: Lithnet.MetadirectoryServicesAssembly: Lithnet.MetadirectoryServices (in Lithnet.MetadirectoryServices.dll) Version: 1.0.6017.24765
Syntax public enum ValueOperator
Public Enumeration ValueOperator
public enum class ValueOperator
Members
| Member name | Value | Description |
---|
| None | 0 |
No comparison type is specified
|
| Equals | 1 |
The values being compared must be the same
|
| NotEquals | 2 |
The values being compared must not be the same
|
| GreaterThan | 3 |
The value being compared must be greater than the value it is being compared to
|
| LessThan | 4 |
The value being compared must be less than the value it is being compared to
|
| GreaterThanOrEq | 5 |
The value being compared must be greater than or equal to the value it is being compared to
|
| LessThanOrEq | 6 |
The value being compared must be less than or equal to the value it is being compared to
|
| Contains | 7 |
The value being compared must be found in the value it is being compared to
|
| NotContains | 8 |
The value being compared must not be found in the value it is being compared to
|
| StartsWith | 9 |
The value being compared must start with the value it is being compared to
|
| EndsWith | 10 |
The value being compared must end with the value it is being compared to
|
| And | 11 |
The values are compared with a logical AND
|
| Or | 12 |
The values are compared with a logical OR
|
| Smallest | 13 |
The selector should take the smallest value found
|
| Largest | 14 |
The selector should take the largest value found
|
| IsPresent | 15 |
The value must not be null, empty, or missing
|
| NotPresent | 16 |
The value must be null, empty, or missing
|
| First | 17 |
Gets the first value in a set of values
|
| Last | 18 |
Gets the last value from a set of values
|
See Also