RouteData(Type, IReadOnlyDictionary<String,Object>) Constructor

Definición

Construye una instancia de 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);
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))

Parámetros

pageType
Type

El tipo de la página que coincide con la ruta, que debe implementar IComponent.

routeValues
IReadOnlyDictionary<String,Object>

Los valores de parámetro de ruta extraídos de la ruta coincidente.

Se aplica a