Route Constructor (String^, RouteValueDictionary^, RouteValueDictionary^, IRouteHandler^)
.NET Framework (current version)
Initializes a new instance of the Route class, by using the specified URL pattern, default parameter values, constraints, and handler class.
Assembly: System.Web (in System.Web.dll)
public:
Route(
String^ url,
RouteValueDictionary^ defaults,
RouteValueDictionary^ constraints,
IRouteHandler^ routeHandler
)
Parameters
- url
-
Type:
System::String^
The URL pattern for the route.
- defaults
-
Type:
System.Web.Routing::RouteValueDictionary^
The values to use if the URL does not contain all the parameters.
- constraints
-
Type:
System.Web.Routing::RouteValueDictionary^
A regular expression that specifies valid values for a URL parameter.
- routeHandler
-
Type:
System.Web.Routing::IRouteHandler^
The object that processes requests for the route.
.NET Framework
Available since 3.5
Available since 3.5
Show: