RouteParameter.RouteKey 属性

定义

获取或设置从中检索路由参数值的路由段的名称。

public:
 property System::String ^ RouteKey { System::String ^ get(); void set(System::String ^ value); };
public string RouteKey { get; set; }
member this.RouteKey : string with get, set
Public Property RouteKey As String

属性值

包含参数值的路由段的名称。

注解

定义路由模式时,可以包含用作 Web 请求 URL 中实际值的占位符的段。 通过将占位符括在大括号 ( {} ) 来定义占位符。 例如,格式blog/{action}/{entry}的路由模式包含名为 和 entryaction占位符。 若要检索占位符的值,请将 RouteKey 属性设置为占位符的名称并调用 Evaluate 方法。

适用于

另请参阅