Selects the controller for OData requests.
Namespace:   System.Web.OData.Routing.Conventions
Assembly:  System.Web.OData (in System.Web.OData.dll)
Syntax
public string SelectController(
    ODataPath odataPath,
    HttpRequestMessage request
)
public:
virtual String^ SelectController(
    ODataPath^ odataPath,
    HttpRequestMessage^ request
) sealed
abstract SelectController : 
        odataPath:ODataPath *
        request:HttpRequestMessage -> string
override SelectController : 
        odataPath:ODataPath *
        request:HttpRequestMessage -> string
Public Function SelectController (
    odataPath As ODataPath,
    request As HttpRequestMessage
) As String
Parameters
- odataPath 
 Type: System.Web.OData.Routing.ODataPath- The OData path. 
- request 
 Type: System.Net.Http.HttpRequestMessage- The request. 
Return Value
Type: System.String
null if the request isn't handled by this convention; otherwise, the name of the selected controller
Implements
IODataRoutingConvention.SelectController(ODataPath, HttpRequestMessage)
See Also
MetadataRoutingConvention Class
System.Web.OData.Routing.Conventions Namespace
Return to top