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