DynamicDataRoute Class

Definition

Represents a route that is used by ASP.NET Dynamic Data.

public ref class DynamicDataRoute : System::Web::Routing::Route
public class DynamicDataRoute : System.Web.Routing.Route
type DynamicDataRoute = class
    inherit Route
Public Class DynamicDataRoute
Inherits Route
Inheritance
DynamicDataRoute

Remarks

You use routes to configure Dynamic Data behavior.

The static Routes property of the RouteTable type holds a collection of routes. For Dynamic Data, one or more routes are typically registered (added to the Routes property) in the Application_Start event in the Global.asax file. For example, routes determine whether the details for a row of data should be shown on the same page as the list of rows. They can also determine whether details should appear on the same page as the list of rows for some tables but not others.

You set the Action, ViewName, Table, and Model properties and provide a pattern for the URL in the Route constructor.

Dynamic Data uses the URL pattern that you provide to match URL patterns for requests and to create URLs. For more information, see DynamicDataRoute.

Constructors

DynamicDataRoute(String)

Initializes a new instance of the DynamicDataRoute class by using the specified URL pattern.

Properties

Action

Gets or sets the name of an action for a route.

Constraints

Gets or sets a dictionary of expressions that specify valid values for a URL parameter.

(Inherited from Route)
DataTokens

Gets or sets custom values that are passed to the route handler, but which are not used to determine whether the route matches a URL pattern.

(Inherited from Route)
Defaults

Gets or sets the values to use if the URL does not contain all the parameters.

(Inherited from Route)
Model

Gets or sets the data model to which the route applies.

RouteExistingFiles

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

(Inherited from RouteBase)
RouteHandler

Gets or sets the object that processes requests for the route.

Table

Gets or sets the name of the table for the route.

Url

Gets or sets the URL pattern for the route.

(Inherited from Route)
ViewName

Gets or sets the name of the .aspx page that is associated with a route.

Methods

Equals(Object)

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

(Inherited from Object)
GetActionFromRouteData(RouteData)

Returns the action from the RouteData object for the current Dynamic Data Web request.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetRouteData(HttpContextBase)

Returns routing information for a specific Web request.

GetTableFromRouteData(RouteData)

Identifies the table that is associated with a Dynamic Data Web page request.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
GetVirtualPath(RequestContext, RouteValueDictionary)

Returns the virtual path of a route.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ProcessConstraint(HttpContextBase, Object, String, RouteValueDictionary, RouteDirection)

Determines whether a parameter value matches the constraint for that parameter.

(Inherited from Route)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also