PathSelectItem 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
PathSelectItem(ODataSelectPath) |
Constructs a PathSelectItem to indicate that a specific path is selected. |
PathSelectItem(ODataSelectPath, IEdmNavigationSource, SelectExpandClause, FilterClause, OrderByClause, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, SearchClause, ComputeClause) |
Constructs a PathSelectItem to indicate that a specific path is selected. |
PathSelectItem(ODataSelectPath)
Constructs a PathSelectItem to indicate that a specific path is selected.
public PathSelectItem (Microsoft.OData.UriParser.ODataSelectPath selectedPath);
new Microsoft.OData.UriParser.PathSelectItem : Microsoft.OData.UriParser.ODataSelectPath -> Microsoft.OData.UriParser.PathSelectItem
Public Sub New (selectedPath As ODataSelectPath)
Parameters
- selectedPath
- ODataSelectPath
The selected path.
Exceptions
Throws if the input selectedPath is null.
Applies to
PathSelectItem(ODataSelectPath, IEdmNavigationSource, SelectExpandClause, FilterClause, OrderByClause, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, SearchClause, ComputeClause)
Constructs a PathSelectItem to indicate that a specific path is selected.
public PathSelectItem (Microsoft.OData.UriParser.ODataSelectPath selectedPath, Microsoft.OData.Edm.IEdmNavigationSource navigationSource, Microsoft.OData.UriParser.SelectExpandClause selectAndExpand, Microsoft.OData.UriParser.FilterClause filterOption, Microsoft.OData.UriParser.OrderByClause orderByOption, long? topOption, long? skipOption, bool? countOption, Microsoft.OData.UriParser.SearchClause searchOption, Microsoft.OData.UriParser.ComputeClause computeOption);
new Microsoft.OData.UriParser.PathSelectItem : Microsoft.OData.UriParser.ODataSelectPath * Microsoft.OData.Edm.IEdmNavigationSource * Microsoft.OData.UriParser.SelectExpandClause * Microsoft.OData.UriParser.FilterClause * Microsoft.OData.UriParser.OrderByClause * Nullable<int64> * Nullable<int64> * Nullable<bool> * Microsoft.OData.UriParser.SearchClause * Microsoft.OData.UriParser.ComputeClause -> Microsoft.OData.UriParser.PathSelectItem
Public Sub New (selectedPath As ODataSelectPath, navigationSource As IEdmNavigationSource, selectAndExpand As SelectExpandClause, filterOption As FilterClause, orderByOption As OrderByClause, topOption As Nullable(Of Long), skipOption As Nullable(Of Long), countOption As Nullable(Of Boolean), searchOption As SearchClause, computeOption As ComputeClause)
Parameters
- selectedPath
- ODataSelectPath
The selected path.
- navigationSource
- IEdmNavigationSource
The navigation source for this select item.
- selectAndExpand
- SelectExpandClause
This sub select and sub expand for this select item.
- filterOption
- FilterClause
A filter clause for this select (can be null).
- orderByOption
- OrderByClause
An Orderby clause for this select (can be null).
- searchOption
- SearchClause
A search clause for this select (can be null).
- computeOption
- ComputeClause
A compute clause for this expand (can be null).
Exceptions
Throws if the input selectedPath is null.