Share via


ResourceRangeVariable Constructors

Definition

Overloads

ResourceRangeVariable(String, IEdmStructuredTypeReference, IEdmNavigationSource)

Creates a ResourceRangeVariable.

ResourceRangeVariable(String, IEdmStructuredTypeReference, CollectionResourceNode)

Creates a ResourceRangeVariable.

ResourceRangeVariable(String, IEdmStructuredTypeReference, IEdmNavigationSource)

public ResourceRangeVariable (string name, Microsoft.OData.Edm.IEdmStructuredTypeReference structuredType, Microsoft.OData.Edm.IEdmNavigationSource navigationSource);
new Microsoft.OData.UriParser.ResourceRangeVariable : string * Microsoft.OData.Edm.IEdmStructuredTypeReference * Microsoft.OData.Edm.IEdmNavigationSource -> Microsoft.OData.UriParser.ResourceRangeVariable
Public Sub New (name As String, structuredType As IEdmStructuredTypeReference, navigationSource As IEdmNavigationSource)

Parameters

name
String

The name of the associated any/all parameter (null if none)

structuredType
IEdmStructuredTypeReference

The structured type of each item in the collection that this range variable iterates over.

navigationSource
IEdmNavigationSource

The navigation source of the collection this node iterates over.

Exceptions

Throws if the input name or entityType is null.

Applies to

ResourceRangeVariable(String, IEdmStructuredTypeReference, CollectionResourceNode)

public ResourceRangeVariable (string name, Microsoft.OData.Edm.IEdmStructuredTypeReference structuredType, Microsoft.OData.UriParser.CollectionResourceNode collectionResourceNode);
new Microsoft.OData.UriParser.ResourceRangeVariable : string * Microsoft.OData.Edm.IEdmStructuredTypeReference * Microsoft.OData.UriParser.CollectionResourceNode -> Microsoft.OData.UriParser.ResourceRangeVariable
Public Sub New (name As String, structuredType As IEdmStructuredTypeReference, collectionResourceNode As CollectionResourceNode)

Parameters

name
String

The name of the associated any/all parameter (null if none)

structuredType
IEdmStructuredTypeReference

The structured type of each item in the collection that this range variable iterates over.

collectionResourceNode
CollectionResourceNode

The resource collection that this rangeVariable node iterates over

Exceptions

Throws if the input name or entityType is null.

Applies to