2 writes to RouteValues
Microsoft.AspNetCore.Mvc.RazorPages (2)
ApplicationModels\PageRouteModel.cs (2)
39
RouteValues
= new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
57
RouteValues
= new Dictionary<string, string>(other.RouteValues, StringComparer.OrdinalIgnoreCase);
6 references to RouteValues
Microsoft.AspNetCore.Mvc.RazorPages (6)
ApplicationModels\PageRouteModel.cs (3)
57
RouteValues = new Dictionary<string, string>(other.
RouteValues
, StringComparer.OrdinalIgnoreCase);
108
/// when the action descriptor is created, but will not be visible in <see cref="
RouteValues
"/>.
116
/// additional parameters specified by <see cref="
RouteValues
"/> into static segments in the route template.
ApplicationModels\PageRouteModelFactory.cs (2)
51
routeModel.
RouteValues
["area"] = areaResult.areaName;
58
model.
RouteValues
.Add("page", model.ViewEnginePath);
Infrastructure\PageActionDescriptorProvider.cs (1)
110
foreach (var kvp in model.
RouteValues
)