AllowedQueryOptions 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.
OData query options to allow for querying.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum AllowedQueryOptions
[<System.Flags>]
type AllowedQueryOptions =
Public Enum AllowedQueryOptions
- Inheritance
-
AllowedQueryOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | A value that corresponds to allowing no query options. |
Filter | 1 | A value that corresponds to allowing the $filter query option. |
Expand | 2 | A value that corresponds to allowing the $expand query option. |
Select | 4 | A value that corresponds to allowing the $select query option. |
OrderBy | 8 | A value that corresponds to allowing the $orderby query option. |
Top | 16 | A value that corresponds to allowing the $top query option. |
Skip | 32 | A value that corresponds to allowing the $skip query option. |
Count | 64 | A value that corresponds to allowing the $count query option. |
Format | 128 | A value that corresponds to allowing the $format query option. |
SkipToken | 256 | A value that corresponds to allowing the $skiptoken query option. |
DeltaToken | 512 | A value that corresponds to allowing the $deltatoken query option. |
Apply | 1024 | A value that corresponds to allowing the $apply query option. |
Supported | 1535 | A value that corresponds to the default query options supported. |
All | 2047 | A value that corresponds to allowing all query options. |