AllowedArithmeticOperators Enum

Definition

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

Add 1

A value that corresponds to allowing 'Add' arithmetic operator in $filter.

All 31

A value that corresponds to allowing all arithmetic operators 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.

Multiply 4

A value that corresponds to allowing 'Multiply' arithmetic operator in $filter.

None 0

A value that corresponds to allowing no arithmetic operators in $filter.

Subtract 2

A value that corresponds to allowing 'Subtract' arithmetic operator in $filter.

Applies to