AreaRegistrationContext.MapRoute Method (String, String, Object, Object)
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 constraint.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Public Function MapRoute ( _ name As String, _ url As String, _ defaults As Object, _ constraints As Object _ ) As Route 'Usage Dim instance As AreaRegistrationContext Dim name As String Dim url As String Dim defaults As Object Dim constraints As Object Dim returnValue As Route returnValue = instance.MapRoute(name, _ url, defaults, constraints)
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.
- constraints
- Type: System.Object
A set of expressions that specify valid values for a URL parameter.
| Exception | Condition |
|---|---|
| ArgumentNullException | The url parameter is Nothing. |
Show: