Share via


ExpandToken Constructors

Definition

Overloads

ExpandToken(ExpandTermToken[])

Creates a new instance of ExpandToken given the property-accesses of the expand query.

ExpandToken(IEnumerable<ExpandTermToken>)

Create a new instance of ExpandToken given the property-accesses of the expand query.

ExpandToken(ExpandTermToken[])

Creates a new instance of ExpandToken given the property-accesses of the expand query.

public ExpandToken (params Microsoft.OData.UriParser.ExpandTermToken[] expandTerms);
new Microsoft.OData.UriParser.ExpandToken : Microsoft.OData.UriParser.ExpandTermToken[] -> Microsoft.OData.UriParser.ExpandToken
Public Sub New (ParamArray expandTerms As ExpandTermToken())

Parameters

expandTerms
ExpandTermToken[]

The properties according to which to expand the results.

Applies to

ExpandToken(IEnumerable<ExpandTermToken>)

Create a new instance of ExpandToken given the property-accesses of the expand query.

public ExpandToken (System.Collections.Generic.IEnumerable<Microsoft.OData.UriParser.ExpandTermToken> expandTerms);
new Microsoft.OData.UriParser.ExpandToken : seq<Microsoft.OData.UriParser.ExpandTermToken> -> Microsoft.OData.UriParser.ExpandToken
Public Sub New (expandTerms As IEnumerable(Of ExpandTermToken))

Parameters

expandTerms
IEnumerable<ExpandTermToken>

The properties according to which to expand the results.

Applies to