OData query options to allow for querying.
Namespace: System.Web.OData.Query
Assembly: System.Web.OData (in System.Web.OData.dll)
Syntax
[FlagsAttribute]
public enum AllowedQueryOptions
[FlagsAttribute]
public enum class AllowedQueryOptions
[<FlagsAttribute>]
type AllowedQueryOptions
<FlagsAttribute>
Public Enumeration AllowedQueryOptions
Members
| Member name | Description | |
|---|---|---|
| All | A value that corresponds to allowing all query options. |
|
| Count | A value that corresponds to allowing the $count query option. |
|
| DeltaToken | A value that corresponds to allowing the $deltatoken query option. |
|
| Expand | A value that corresponds to allowing the $expand query option. |
|
| Filter | A value that corresponds to allowing the $filter query option. |
|
| Format | A value that corresponds to allowing the $format query option. |
|
| None | A value that corresponds to allowing no query options. |
|
| OrderBy | A value that corresponds to allowing the $orderby query option. |
|
| Select | A value that corresponds to allowing the $select query option. |
|
| Skip | A value that corresponds to allowing the $skip query option. |
|
| SkipToken | A value that corresponds to allowing the $skiptoken query option. |
|
| Supported | A value that corresponds to the default query options supported by EnableQueryAttribute. |
|
| Top | A value that corresponds to allowing the $top query option. |
See Also
System.Web.OData.Query Namespace
Return to top