AreaRegistrationContext.MapRoute Method (String, String, String())

Maps the specified URL route and associates it with the area that is specified by the AreaName property, using the specified namespaces.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

'Declaration
Public Function MapRoute ( _
	name As String, _
	url As String, _
	namespaces As String() _
) As Route
'Usage
Dim instance As AreaRegistrationContext 
Dim name As String 
Dim url As String 
Dim namespaces As String()
Dim returnValue As Route 

returnValue = instance.MapRoute(name, _
	url, namespaces)

Parameters

name
Type: System.String
The name of the route.
url
Type: System.String
The URL pattern for the route.
namespaces
Type: System.String()
An enumerable set of namespaces for the application.

Return Value

Type: System.Web.Routing.Route
A reference to the mapped route.

ExceptionCondition
ArgumentNullException

The url parameter is Nothing.

Show: