AllowedArithmeticOperators 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.
Arithmetic operators to allow for querying using $filter.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum AllowedArithmeticOperators
[<System.Flags>]
type AllowedArithmeticOperators =
Public Enum AllowedArithmeticOperators
- Inheritance
-
AllowedArithmeticOperators
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | A value that corresponds to allowing no arithmetic operators in $filter. |
Add | 1 | A value that corresponds to allowing 'Add' arithmetic operator in $filter. |
Subtract | 2 | A value that corresponds to allowing 'Subtract' arithmetic operator in $filter. |
Multiply | 4 | A value that corresponds to allowing 'Multiply' arithmetic operator in $filter. |
Divide | 8 | A value that corresponds to allowing 'Divide' arithmetic operator in $filter. |
Modulo | 16 | A value that corresponds to allowing 'Modulo' arithmetic operator in $filter. |
All | 31 | A value that corresponds to allowing all arithmetic operators in $filter. |