Share via


ODataSelectPath Constructors

Definition

Overloads

ODataSelectPath(ODataPathSegment[])

Create an ODataPath object based on a single segment

ODataSelectPath(IEnumerable<ODataPathSegment>)

Create an ODataSelectPath

ODataSelectPath(ODataPathSegment[])

Create an ODataPath object based on a single segment

public ODataSelectPath (params Microsoft.OData.UriParser.ODataPathSegment[] segments);
new Microsoft.OData.UriParser.ODataSelectPath : Microsoft.OData.UriParser.ODataPathSegment[] -> Microsoft.OData.UriParser.ODataSelectPath
Public Sub New (ParamArray segments As ODataPathSegment())

Parameters

segments
ODataPathSegment[]

The list of segments that makes up this path.

Exceptions

Throws if the list of segments doesn't match the requirements for a path in $select

Applies to

ODataSelectPath(IEnumerable<ODataPathSegment>)

Create an ODataSelectPath

public ODataSelectPath (System.Collections.Generic.IEnumerable<Microsoft.OData.UriParser.ODataPathSegment> segments);
new Microsoft.OData.UriParser.ODataSelectPath : seq<Microsoft.OData.UriParser.ODataPathSegment> -> Microsoft.OData.UriParser.ODataSelectPath
Public Sub New (segments As IEnumerable(Of ODataPathSegment))

Parameters

segments
IEnumerable<ODataPathSegment>

The list of segments that makes up this path.

Exceptions

Throws if the list of segments doesn't match the requirements for a path in $select

Applies to