Share via


LambdaNode Constructors

Definition

Overloads

LambdaNode(Collection<RangeVariable>)

Create a LambdaNode

LambdaNode(Collection<RangeVariable>, RangeVariable)

Create a LambdaNode

LambdaNode(Collection<RangeVariable>)

Create a LambdaNode

protected LambdaNode (System.Collections.ObjectModel.Collection<Microsoft.OData.UriParser.RangeVariable> rangeVariables);
new Microsoft.OData.UriParser.LambdaNode : System.Collections.ObjectModel.Collection<Microsoft.OData.UriParser.RangeVariable> -> Microsoft.OData.UriParser.LambdaNode
Protected Sub New (rangeVariables As Collection(Of RangeVariable))

Parameters

rangeVariables
Collection<RangeVariable>

The collection of rangeVariables in scope for this Any or All.

Applies to

LambdaNode(Collection<RangeVariable>, RangeVariable)

Create a LambdaNode

protected LambdaNode (System.Collections.ObjectModel.Collection<Microsoft.OData.UriParser.RangeVariable> rangeVariables, Microsoft.OData.UriParser.RangeVariable currentRangeVariable);
new Microsoft.OData.UriParser.LambdaNode : System.Collections.ObjectModel.Collection<Microsoft.OData.UriParser.RangeVariable> * Microsoft.OData.UriParser.RangeVariable -> Microsoft.OData.UriParser.LambdaNode
Protected Sub New (rangeVariables As Collection(Of RangeVariable), currentRangeVariable As RangeVariable)

Parameters

rangeVariables
Collection<RangeVariable>

The collection of rangeVariables in scope for this Any or All.

currentRangeVariable
RangeVariable

The newest range variable added for by this Any or All.

Applies to