Compartir a través de


ODataSelectPath Constructores

Definición

Sobrecargas

ODataSelectPath(ODataPathSegment[])

Crea un objeto ODataPath basado en un solo segmento

ODataSelectPath(IEnumerable<ODataPathSegment>)

Crea un ODataSelectPath

ODataSelectPath(ODataPathSegment[])

Crea un objeto ODataPath basado en un solo segmento

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())

Parámetros

segments
ODataPathSegment[]

Lista de segmentos que constituyen esta ruta de acceso.

Excepciones

Se produce si la lista de segmentos no coincide con los requisitos de una ruta de acceso de $select

Se aplica a

ODataSelectPath(IEnumerable<ODataPathSegment>)

Crea un 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))

Parámetros

segments
IEnumerable<ODataPathSegment>

Lista de segmentos que constituyen esta ruta de acceso.

Excepciones

Se produce si la lista de segmentos no coincide con los requisitos de una ruta de acceso de $select

Se aplica a