ResourceRangeVariable Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ResourceRangeVariable(String, IEdmStructuredTypeReference, IEdmNavigationSource)
Creates a ResourceRangeVariable.
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)
Creates a ResourceRangeVariable.
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.