Share via


AllowedQueryOptions Enumeration

OData query options to allow for querying.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:  System.Web.Http.OData.Query
Assembly:  System.Web.Http.OData (in System.Web.Http.OData.dll)

Syntax

'Declaration
<FlagsAttribute> _
Public Enumeration AllowedQueryOptions
'Usage
Dim instance As AllowedQueryOptions
[FlagsAttribute]
public enum AllowedQueryOptions
[FlagsAttribute]
public enum class AllowedQueryOptions
[<FlagsAttribute>]
type AllowedQueryOptions
public enum AllowedQueryOptions

Members

Member name Description
All A value that corresponds to allowing all query options.

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.

InlineCount A value that corresponds to allowing the $inlinecount 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 QueryableAttribute.

Top A value that corresponds to allowing the $top query option.

See Also

Reference

System.Web.Http.OData.Query Namespace