AreaRegistrationContext.MapRoute Method (String, String, Object, String[])

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

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

public function MapRoute(
	name : String, 
	url : String, 
	defaults : Object, 
	namespaces : String[]
) : Route

Parameters

name
Type: System.String

The name of the route.

url
Type: System.String

The URL pattern for the route.

defaults
Type: System.Object

An object that contains default route values.

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 a null reference (Nothing in Visual Basic).

Show: