RouteBase Class

Definition

Serves as the base class for all classes that represent an ASP.NET route.

public ref class RouteBase abstract
public abstract class RouteBase
type RouteBase = class
Public MustInherit Class RouteBase
Inheritance
RouteBase
Derived

Remarks

The RouteBase class enables you to create customized classes for defining routes in your application. Typically, you will use the Route class when you define routes. The Route class derives from the RouteBase class. However, if you want to provide different functionality than what is provided by the Route class, you create a class that derives from RouteBase and implement the properties and methods that you need.

Constructors

RouteBase()

Initializes the class for use by an inherited class instance. This constructor can only be called by an inherited class.

Properties

RouteExistingFiles

Gets or sets a value that indicates whether ASP.NET routing should handle URLs that match an existing file.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetRouteData(HttpContextBase)

When overridden in a derived class, returns route information about the request.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
GetVirtualPath(RequestContext, RouteValueDictionary)

When overridden in a derived class, checks whether the route matches the specified values, and if so, generates a URL and retrieves information about the route.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also