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 next OData path segment following a primitive property.
Namespace:   System.Web.Http.OData.Routing
Assembly:  System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
protected virtual ODataPathSegment ParseAtPrimitiveProperty(
    IEdmModel model,
    ODataPathSegment previous,
    IEdmType previousEdmType,
    string segment
)
protected:
virtual ODataPathSegment^ ParseAtPrimitiveProperty(
    IEdmModel^ model,
    ODataPathSegment^ previous,
    IEdmType^ previousEdmType,
    String^ segment
)
abstract ParseAtPrimitiveProperty : 
        model:IEdmModel *
        previous:ODataPathSegment *
        previousEdmType:IEdmType *
        segment:string -> ODataPathSegment
override ParseAtPrimitiveProperty : 
        model:IEdmModel *
        previous:ODataPathSegment *
        previousEdmType:IEdmType *
        segment:string -> ODataPathSegment
Protected Overridable Function ParseAtPrimitiveProperty (
    model As IEdmModel,
    previous As ODataPathSegment,
    previousEdmType As IEdmType,
    segment As String
) As ODataPathSegment
Parameters
- model 
 Type: Microsoft.Data.Edm.IEdmModel- The model to use for path parsing. 
- previous 
 Type: System.Web.Http.OData.Routing.ODataPathSegment- The previous path segment. 
- previousEdmType 
 Type: Microsoft.Data.Edm.IEdmType- The EDM type of the OData path up to the previous segment. 
- segment 
 Type: System.String- The value of the segment to parse. 
Return Value
Type: System.Web.Http.OData.Routing.ODataPathSegment
A parsed representation of the segment.
See Also
DefaultODataPathHandler Class
System.Web.Http.OData.Routing Namespace
Return to top