共用方式為


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} 的路由模式包含名為 actionentry的佔位元。 若要擷取佔位元的值,請將 RouteKey 屬性設定為佔位元的名稱,並呼叫 Evaluate 方法。

適用於

另請參閱