This topic has not yet been rated - Rate this topic

DynamicDataRoute Class

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

System.Object
  System.Web.Routing.RouteBase
    System.Web.Routing.Route
      System.Web.DynamicData.DynamicDataRoute

Namespace:  System.Web.DynamicData
Assembly:  System.Web.DynamicData (in System.Web.DynamicData.dll)
public class DynamicDataRoute : Route

The DynamicDataRoute type exposes the following members.

  Name Description
Public method DynamicDataRoute Initializes a new instance of the DynamicDataRoute class by using the specified URL pattern.
Top
  Name Description
Public property Action Gets or sets the name of an action for a route.
Public property Constraints Gets or sets a dictionary of expressions that specify valid values for a URL parameter. (Inherited from Route.)
Public property 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.)
Public property Defaults Gets or sets the values to use if the URL does not contain all the parameters. (Inherited from Route.)
Public property Model Gets or sets the data model to which the route applies.
Public property RouteHandler Gets or sets the object that processes requests for the route.
Public property Table Gets or sets the name of the table for the route.
Public property Url Gets or sets the URL pattern for the route. (Inherited from Route.)
Public property ViewName Gets or sets the name of the .aspx page that is associated with a route.
Top
  Name Description
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetActionFromRouteData Returns the action from the RouteData object for the current Dynamic Data Web request.
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetRouteData Returns routing information for a specific Web request. (Overrides Route.GetRouteData(HttpContextBase).)
Public method GetTableFromRouteData Identifies the table that is associated with a Dynamic Data Web page request.
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method GetVirtualPath Returns the virtual path of a route. (Overrides Route.GetVirtualPath(RequestContext, RouteValueDictionary).)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method ProcessConstraint Determines whether a parameter value matches the constraint for that parameter. (Inherited from Route.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top

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.

.NET Framework

Supported in: 4, 3.5 SP1

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.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ