RouteCollectionExtensions.GetVirtualPathForArea Method (RouteCollection, RequestContext, String, RouteValueDictionary)
Visual Studio 2010
Returns an object that contains information about the route and virtual path that are the result of generating a URL in the current area.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
public static VirtualPathData GetVirtualPathForArea( this RouteCollection routes, RequestContext requestContext, string name, RouteValueDictionary values )
Parameters
- routes
- Type: System.Web.Routing.RouteCollection
An object that contains the routes for the applications.
- requestContext
- Type: System.Web.Routing.RequestContext
An object that encapsulates information about the requested route.
- name
- Type: System.String
The name of the route to use when information about the URL path is retrieved.
- values
- Type: System.Web.Routing.RouteValueDictionary
An object that contains the parameters for a route.
Return Value
Type: System.Web.Routing.VirtualPathDataAn object that contains information about the route and virtual path that are the result of generating a URL in the current area.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type RouteCollection. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Community Additions
ADD
Show: