次の方法で共有


RouteData(Type, IReadOnlyDictionary<String,Object>) コンストラクター

定義

のインスタンス RouteDataを構築します。

public:
 RouteData(Type ^ pageType, System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^> ^ routeValues);
public RouteData (Type pageType, System.Collections.Generic.IReadOnlyDictionary<string,object> routeValues);
public RouteData (Type pageType, System.Collections.Generic.IReadOnlyDictionary<string,object?> routeValues);
new Microsoft.AspNetCore.Components.RouteData : Type * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Microsoft.AspNetCore.Components.RouteData
Public Sub New (pageType As Type, routeValues As IReadOnlyDictionary(Of String, Object))

パラメーター

pageType
Type

ルートに一致するページの型。これは を実装 IComponentする必要があります。

routeValues
IReadOnlyDictionary<String,Object>

一致したルートから抽出されたルート パラメーター値。

適用対象