Share via


ODataQueryOptions.IsSystemQueryOption Method

Definition

Overloads

IsSystemQueryOption(String)

Check if the given query option is an OData system query option using $-prefix-required theme.

IsSystemQueryOption(String, Boolean)

Check if the given query option is an OData system query option.

IsSystemQueryOption(String)

Check if the given query option is an OData system query option using $-prefix-required theme.

public static bool IsSystemQueryOption (string queryOptionName);
static member IsSystemQueryOption : string -> bool
Public Shared Function IsSystemQueryOption (queryOptionName As String) As Boolean

Parameters

queryOptionName
String

The name of the query option.

Returns

Returns true if the query option is an OData system query option.

Applies to

IsSystemQueryOption(String, Boolean)

Check if the given query option is an OData system query option.

public static bool IsSystemQueryOption (string queryOptionName, bool isDollarSignOptional);
static member IsSystemQueryOption : string * bool -> bool
Public Shared Function IsSystemQueryOption (queryOptionName As String, isDollarSignOptional As Boolean) As Boolean

Parameters

queryOptionName
String

The name of the query option.

isDollarSignOptional
Boolean

Whether the optional-$-prefix scheme is used for OData system query.

Returns

Returns true if the query option is an OData system query option.

Applies to