2 writes to RouteValues
Microsoft.AspNetCore.Mvc.RazorPages (2)
ApplicationModels\PageRouteModel.cs (2)
39RouteValues = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); 57RouteValues = new Dictionary<string, string>(other.RouteValues, StringComparer.OrdinalIgnoreCase);
6 references to RouteValues
Microsoft.AspNetCore.Mvc.RazorPages (6)
ApplicationModels\PageRouteModel.cs (3)
57RouteValues = 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)
51routeModel.RouteValues["area"] = areaResult.areaName; 58model.RouteValues.Add("page", model.ViewEnginePath);
Infrastructure\PageActionDescriptorProvider.cs (1)
110foreach (var kvp in model.RouteValues)