Selects the controller for OData requests.
Namespace:   System.Web.OData.Routing.Conventions
Assembly:  System.Web.OData (in System.Web.OData.dll)
Syntax
string SelectController(
    ODataPath odataPath,
    HttpRequestMessage request
)
String^ SelectController(
    ODataPath^ odataPath,
    HttpRequestMessage^ request
)
abstract SelectController : 
        odataPath:ODataPath *
        request:HttpRequestMessage -> string
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
See Also
IODataRoutingConvention Interface
System.Web.OData.Routing.Conventions Namespace
Return to top