Share via


SelectTermToken Constructors

Definition

Overloads

SelectTermToken(PathSegmentToken)

Initializes a new instance of SelectTermToken class.

SelectTermToken(PathSegmentToken, SelectToken)

Create an select term using only the property and its subexpand/select

SelectTermToken(PathSegmentToken, QueryToken, IEnumerable<OrderByToken>, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, QueryToken, SelectToken, ComputeToken)

Create a select term using only the property and its supporting query options.

SelectTermToken(PathSegmentToken)

Initializes a new instance of SelectTermToken class.

public SelectTermToken (Microsoft.OData.UriParser.PathSegmentToken pathToProperty);
new Microsoft.OData.UriParser.SelectTermToken : Microsoft.OData.UriParser.PathSegmentToken -> Microsoft.OData.UriParser.SelectTermToken
Public Sub New (pathToProperty As PathSegmentToken)

Parameters

pathToProperty
PathSegmentToken

the path to the property for this select term

Applies to

SelectTermToken(PathSegmentToken, SelectToken)

Create an select term using only the property and its subexpand/select

public SelectTermToken (Microsoft.OData.UriParser.PathSegmentToken pathToProperty, Microsoft.OData.UriParser.SelectToken selectOption);
new Microsoft.OData.UriParser.SelectTermToken : Microsoft.OData.UriParser.PathSegmentToken * Microsoft.OData.UriParser.SelectToken -> Microsoft.OData.UriParser.SelectTermToken
Public Sub New (pathToProperty As PathSegmentToken, selectOption As SelectToken)

Parameters

pathToProperty
PathSegmentToken

the path to the property for this select term

selectOption
SelectToken

the sub select for this token

Applies to

SelectTermToken(PathSegmentToken, QueryToken, IEnumerable<OrderByToken>, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, QueryToken, SelectToken, ComputeToken)

Create a select term using only the property and its supporting query options.

public SelectTermToken (Microsoft.OData.UriParser.PathSegmentToken pathToProperty, Microsoft.OData.UriParser.QueryToken filterOption, System.Collections.Generic.IEnumerable<Microsoft.OData.UriParser.OrderByToken> orderByOptions, long? topOption, long? skipOption, bool? countQueryOption, Microsoft.OData.UriParser.QueryToken searchOption, Microsoft.OData.UriParser.SelectToken selectOption, Microsoft.OData.UriParser.ComputeToken computeOption);
new Microsoft.OData.UriParser.SelectTermToken : Microsoft.OData.UriParser.PathSegmentToken * Microsoft.OData.UriParser.QueryToken * seq<Microsoft.OData.UriParser.OrderByToken> * Nullable<int64> * Nullable<int64> * Nullable<bool> * Microsoft.OData.UriParser.QueryToken * Microsoft.OData.UriParser.SelectToken * Microsoft.OData.UriParser.ComputeToken -> Microsoft.OData.UriParser.SelectTermToken
Public Sub New (pathToProperty As PathSegmentToken, filterOption As QueryToken, orderByOptions As IEnumerable(Of OrderByToken), topOption As Nullable(Of Long), skipOption As Nullable(Of Long), countQueryOption As Nullable(Of Boolean), searchOption As QueryToken, selectOption As SelectToken, computeOption As ComputeToken)

Parameters

pathToProperty
PathSegmentToken

the path to the property for this select term

filterOption
QueryToken

the filter option for this select term

orderByOptions
IEnumerable<OrderByToken>

the orderby options for this select term

topOption
Nullable<Int64>

the top option for this select term

skipOption
Nullable<Int64>

the skip option for this select term

countQueryOption
Nullable<Boolean>

the query count option for this select term

searchOption
QueryToken

the search option for this select term

selectOption
SelectToken

the select option for this select term

computeOption
ComputeToken

the compute option for this select term

Applies to