3 types derived from Route
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\ServiceRoute.cs (1)
11public class ServiceRoute : Route
System.Web (1)
Routing\RouteCollection.cs (1)
399private sealed class IgnoreRouteInternal : Route {
System.Web.DynamicData (1)
DynamicData\DynamicDataRoute.cs (1)
8public class DynamicDataRoute : Route {
2 instantiations of Route
System.Web (2)
Routing\PageRouteHandler.cs (1)
55_routeVirtualPath = new Route(VirtualPath.Substring(2), this);
Routing\RouteCollection.cs (1)
122Route route = new Route(routeUrl, defaults, constraints, dataTokens, new PageRouteHandler(physicalFile, checkPhysicalUrlAccess));
13 references to Route
System.Web (13)
Routing\HttpMethodConstraint.cs (2)
24protected virtual bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection) { 77bool IRouteConstraint.Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection) {
Routing\IRouteConstraint.cs (1)
7bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection);
Routing\PageRouteHandler.cs (2)
50private Route _routeVirtualPath; 51private Route RouteVirtualPath {
Routing\RouteCollection.cs (8)
86var route = item as Route; 94public Route MapPageRoute(string routeName, string routeUrl, string physicalFile) { 100public Route MapPageRoute(string routeName, string routeUrl, string physicalFile, bool checkPhysicalUrlAccess) { 106public Route MapPageRoute(string routeName, string routeUrl, string physicalFile, bool checkPhysicalUrlAccess, RouteValueDictionary defaults) { 112public Route MapPageRoute(string routeName, string routeUrl, string physicalFile, bool checkPhysicalUrlAccess, RouteValueDictionary defaults, RouteValueDictionary constraints) { 118public Route MapPageRoute(string routeName, string routeUrl, string physicalFile, bool checkPhysicalUrlAccess, RouteValueDictionary defaults, RouteValueDictionary constraints, RouteValueDictionary dataTokens) { 122Route route = new Route(routeUrl, defaults, constraints, dataTokens, new PageRouteHandler(physicalFile, checkPhysicalUrlAccess));