AllowedLogicalOperators Enum

Definition

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

All 1023

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

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.

Has 512

A value that corresponds to allowing 'Has' 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.

None 0

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

Not 256

A value that corresponds to allowing 'Not' logical operator in $filter.

NotEqual 8

A value that corresponds to allowing 'NotEqual' logical operator in $filter.

Or 1

A value that corresponds to allowing 'Or' logical operator in $filter.

Applies to