AllowedLogicalOperators Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Logical operators to allow for querying using $filter.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum AllowedLogicalOperators
[<System.Flags>]
type AllowedLogicalOperators =
Public Enum AllowedLogicalOperators
- Inheritance
-
AllowedLogicalOperators
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | A value that corresponds to allowing no logical operators in $filter. |
Or | 1 | A value that corresponds to allowing 'Or' logical operator in $filter. |
And | 2 | A value that corresponds to allowing 'And' logical operator in $filter. |
Equal | 4 | A value that corresponds to allowing 'Equal' logical operator in $filter. |
NotEqual | 8 | A value that corresponds to allowing 'NotEqual' logical operator in $filter. |
GreaterThan | 16 | A value that corresponds to allowing 'GreaterThan' logical operator in $filter. |
GreaterThanOrEqual | 32 | A value that corresponds to allowing 'GreaterThanOrEqual' logical operator in $filter. |
LessThan | 64 | A value that corresponds to allowing 'LessThan' logical operator in $filter. |
LessThanOrEqual | 128 | A value that corresponds to allowing 'LessThanOrEqual' logical operator in $filter. |
Not | 256 | A value that corresponds to allowing 'Not' logical operator in $filter. |
Has | 512 | A value that corresponds to allowing 'Has' logical operator in $filter. |
All | 1023 | A value that corresponds to allowing all logical operators in $filter. |