Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Parses the OData path into segments.
Namespace: System.Web.Http.OData.Routing
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
protected internal virtual IEnumerable<string> ParseSegments(
string odataPath
)
public protected:
virtual IEnumerable<String^>^ ParseSegments(
String^ odataPath
)
abstract ParseSegments :
odataPath:string -> IEnumerable<string>
override ParseSegments :
odataPath:string -> IEnumerable<string>
Protected Friend Overridable Function ParseSegments (
odataPath As String
) As IEnumerable(Of String)
Parameters
odataPath
Type: System.StringThe OData path.
Return Value
Type: System.Collections.Generic.IEnumerable<String>
The segments of the OData path.
See Also
DefaultODataPathHandler Class
System.Web.Http.OData.Routing Namespace
Return to top