ODataQueryOptions.IsSystemQueryOption Method
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.
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.