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.
Gets a virtual path data based on the route and the values provided.
Namespace:   System.Web.Http.Routing
Assembly:  System.Web.Http (in System.Web.Http.dll)
Syntax
IHttpVirtualPathData GetVirtualPath(
    HttpRequestMessage request,
    IDictionary<string, object> values
)
IHttpVirtualPathData^ GetVirtualPath(
    HttpRequestMessage^ request,
    IDictionary<String^, Object^>^ values
)
abstract GetVirtualPath : 
        request:HttpRequestMessage *
        values:IDictionary<string, Object> -> IHttpVirtualPathData
Function GetVirtualPath (
    request As HttpRequestMessage,
    values As IDictionary(Of String, Object)
) As IHttpVirtualPathData
Parameters
- request 
 Type: System.Net.Http.HttpRequestMessage- The request message. 
- values 
 Type: System.Collections.Generic.IDictionary<String, Object>- The values. 
Return Value
Type: System.Web.Http.Routing.IHttpVirtualPathData
The virtual path data.
See Also
IHttpRoute Interface
System.Web.Http.Routing Namespace
Return to top