Share via


FunctionCallToken Constructors

Definition

Overloads

FunctionCallToken(String, IEnumerable<QueryToken>)

Create a new FunctionCallToken using the given function name and argument values.

FunctionCallToken(String, IEnumerable<FunctionParameterToken>, QueryToken)

Create a new FunctionCallToken using the given function name and parameter tokens.

FunctionCallToken(String, IEnumerable<QueryToken>)

Create a new FunctionCallToken using the given function name and argument values.

public FunctionCallToken (string name, System.Collections.Generic.IEnumerable<Microsoft.OData.UriParser.QueryToken> argumentValues);
new Microsoft.OData.UriParser.FunctionCallToken : string * seq<Microsoft.OData.UriParser.QueryToken> -> Microsoft.OData.UriParser.FunctionCallToken
Public Sub New (name As String, argumentValues As IEnumerable(Of QueryToken))

Parameters

name
String

The name of the function to call.

argumentValues
IEnumerable<QueryToken>

The argument values for the function.

Applies to

FunctionCallToken(String, IEnumerable<FunctionParameterToken>, QueryToken)

Create a new FunctionCallToken using the given function name and parameter tokens.

public FunctionCallToken (string name, System.Collections.Generic.IEnumerable<Microsoft.OData.UriParser.FunctionParameterToken> arguments, Microsoft.OData.UriParser.QueryToken source);
new Microsoft.OData.UriParser.FunctionCallToken : string * seq<Microsoft.OData.UriParser.FunctionParameterToken> * Microsoft.OData.UriParser.QueryToken -> Microsoft.OData.UriParser.FunctionCallToken
Public Sub New (name As String, arguments As IEnumerable(Of FunctionParameterToken), source As QueryToken)

Parameters

name
String

The name of the function to call.

arguments
IEnumerable<FunctionParameterToken>

The arguments for the function.

source
QueryToken

The syntactically bound parent of this function

Applies to