共用方式為


ActionModel.RouteValues 屬性

定義

取得路由值的集合,這些值必須存在於 中 Values ,才能選取對應的動作。

public:
 property System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ RouteValues { System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ get(); };
public System.Collections.Generic.IDictionary<string,string> RouteValues { get; }
public System.Collections.Generic.IDictionary<string,string?> RouteValues { get; }
member this.RouteValues : System.Collections.Generic.IDictionary<string, string>
Public ReadOnly Property RouteValues As IDictionary(Of String, String)

屬性值

備註

的值 ActionName 會被視為對應至索引鍵 action 的隱含路由值,而 的值 ControllerName 會被視為對應至索引鍵 controller 的隱含路由值。 建立動作描述項時,這些專案將會隱含地新增至 RouteValues ,但不會顯示在 中 RouteValues

中的 RouteValues 專案可以覆寫 中的 RouteValues 專案。

適用於