RouteData Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the RouteData class.
Overloads
RouteData() |
Initializes a new instance of the RouteData class. |
RouteData(RouteBase, IRouteHandler) |
Initializes a new instance of the RouteData class by using the specified route and route handler. |
RouteData()
Initializes a new instance of the RouteData class.
public:
RouteData();
public RouteData ();
Public Sub New ()
See also
Applies to
RouteData(RouteBase, IRouteHandler)
Initializes a new instance of the RouteData class by using the specified route and route handler.
public:
RouteData(System::Web::Routing::RouteBase ^ route, System::Web::Routing::IRouteHandler ^ routeHandler);
public RouteData (System.Web.Routing.RouteBase route, System.Web.Routing.IRouteHandler routeHandler);
new System.Web.Routing.RouteData : System.Web.Routing.RouteBase * System.Web.Routing.IRouteHandler -> System.Web.Routing.RouteData
Public Sub New (route As RouteBase, routeHandler As IRouteHandler)
Parameters
- route
- RouteBase
An object that defines the route.
- routeHandler
- IRouteHandler
An object that processes the request.