RouteParameter::RouteKey Property

.NET Framework (current version)
 

Gets or sets the name of the route segment from which to retrieve the value for the route parameter.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
property String^ RouteKey {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The name of the route segment that contains the value for the parameter.

When you define a route pattern, you can include segments that serve as placeholders for the actual values in the Web request URL. You define placeholders by enclosing them in braces ( { and } ). For example, a route pattern in the format blog/{action}/{entry} contains placeholders named action and entry. To retrieve the value of a placeholder, set the RouteKey property to the name of the placeholder and call the Evaluate method.

.NET Framework
Available since 4.0
Return to top
Show: