DynamicDataRoute Class
Represents a route that is used by ASP.NET Dynamic Data.
System.Web.Routing::RouteBase
System.Web.Routing::Route
System.Web.DynamicData::DynamicDataRoute
Assembly: System.Web.DynamicData (in System.Web.DynamicData.dll)
The DynamicDataRoute type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | DynamicDataRoute | Initializes a new instance of the DynamicDataRoute class by using the specified URL pattern. |
| Name | Description | |
|---|---|---|
![]() | 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. |
![]() | 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. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetActionFromRouteData | Returns the action from the RouteData object for the current Dynamic Data Web request. |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetRouteData | Returns routing information for a specific Web request. (Overrides Route::GetRouteData(HttpContextBase).) |
![]() | GetTableFromRouteData | 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 | Returns the virtual path of a route. (Overrides Route::GetVirtualPath(RequestContext, RouteValueDictionary).) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ProcessConstraint | 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.) |
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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


