Share via


DynamicPathSegment Constructors

Definition

Overloads

DynamicPathSegment(String)

Build a segment to represent an unknown path or an open property.

DynamicPathSegment(String, IEdmType, IEdmNavigationSource, Boolean)

Build a segment to represent an unknown path or an open property.

DynamicPathSegment(String)

Build a segment to represent an unknown path or an open property.

public DynamicPathSegment (string identifier);
new Microsoft.OData.UriParser.DynamicPathSegment : string -> Microsoft.OData.UriParser.DynamicPathSegment
Public Sub New (identifier As String)

Parameters

identifier
String

The identifier of the dynamic path segment

Applies to

DynamicPathSegment(String, IEdmType, IEdmNavigationSource, Boolean)

Build a segment to represent an unknown path or an open property.

public DynamicPathSegment (string identifier, Microsoft.OData.Edm.IEdmType edmType, Microsoft.OData.Edm.IEdmNavigationSource navigationSource, bool singleResult);
new Microsoft.OData.UriParser.DynamicPathSegment : string * Microsoft.OData.Edm.IEdmType * Microsoft.OData.Edm.IEdmNavigationSource * bool -> Microsoft.OData.UriParser.DynamicPathSegment
Public Sub New (identifier As String, edmType As IEdmType, navigationSource As IEdmNavigationSource, singleResult As Boolean)

Parameters

identifier
String

The identifier of the dynamic path segment.

edmType
IEdmType

the IEdmType of this segment

navigationSource
IEdmNavigationSource

The navigation source targeted by this segment. Can be null.

singleResult
Boolean

Whether the segment targets a single result or not.

Applies to