RoutePattern.RequiredValues プロパティ

定義

このルート パターンを適用可能と見なすために指定する必要があるルート値のコレクションを取得します。

public:
 property System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^> ^ RequiredValues { System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^> ^ get(); };
public System.Collections.Generic.IReadOnlyDictionary<string,object> RequiredValues { get; }
public System.Collections.Generic.IReadOnlyDictionary<string,object?> RequiredValues { get; }
member this.RequiredValues : System.Collections.Generic.IReadOnlyDictionary<string, obj>
Public ReadOnly Property RequiredValues As IReadOnlyDictionary(Of String, Object)

プロパティ値

注釈

RequiredValues を使用すると、フレームワークは、同じルート テンプレート仕様を使用して複数のルート パターンを作成できるように、ルート値をパラメーター化されたテンプレートに置き換えることができます。

Route Template: "{controller=Home}/{action=Index}/{id?}"
Route Values: { controller = "Store", action = "Index" }

この方法で生成されたルート パターンは、 などの /Store/Store/IndexURL パスと一致して/Store/Index/17生成されます。

適用対象