1 type derived from RouteBase
System.Web (1)
Routing\Route.cs (1)
9
public class Route :
RouteBase
{
17 references to RouteBase
System.Web (17)
Routing\RouteCollection.cs (13)
11
public class RouteCollection : Collection<
RouteBase
> {
12
private Dictionary<string,
RouteBase
> _namedMap = new Dictionary<string,
RouteBase
>(StringComparer.OrdinalIgnoreCase);
51
public
RouteBase
this[string name] {
56
RouteBase
route;
64
public void Add(string name,
RouteBase
item) {
191
foreach (
RouteBase
route in this) {
250
foreach (
RouteBase
route in this) {
266
RouteBase
namedRoute;
320
protected override void InsertItem(int index,
RouteBase
item) {
343
RouteBase
route = this[index];
344
foreach (KeyValuePair<string,
RouteBase
> namedRoute in _namedMap) {
353
protected override void SetItem(int index,
RouteBase
item) {
Routing\RouteData.cs (2)
16
public RouteData(
RouteBase
route, IRouteHandler routeHandler) {
27
public
RouteBase
Route {
Routing\VirtualPathData.cs (2)
10
public VirtualPathData(
RouteBase
route, string virtualPath) {
21
public
RouteBase
Route {