Implemented interface members:
37 writes to
Microsoft.AspNetCore.Mvc.Core (21)
Builder\ControllerEndpointRouteBuilderExtensions.cs (2)
156
defaultsDictionary
[
"area"] = defaultsDictionary["area"] ?? areaName;
159
constraintsDictionary
[
"area"] = constraintsDictionary["area"] ?? new StringRouteConstraint(areaName);
Builder\MvcAreaRouteBuilderExtensions.cs (2)
124
defaultsDictionary
[
"area"] = defaultsDictionary["area"] ?? areaName;
127
constraintsDictionary
[
"area"] = constraintsDictionary["area"] ?? new StringRouteConstraint(areaName);
Routing\ActionEndpointFactory.cs (4)
195
requiredValues
[
key] = RoutePattern.RequiredValueAny;
199
requiredValues
[
key] = value;
203
requiredValues
[
key] = null;
301
updatedDefaults
[
routeValue.Key] = routeValue.Value;
Routing\EndpointRoutingUrlHelper.cs (4)
47
values
[
"action"] = action;
52
values
[
"action"] = urlActionContext.Action;
60
values
[
"controller"] = controller;
65
values
[
"controller"] = urlActionContext.Controller;
Routing\MvcAttributeRouteHandler.cs (1)
65
context.RouteData.Values
[
kvp.Key] = kvp.Value;
Routing\UrlHelperBase.cs (8)
237
values
[
"action"] = obj;
242
values
[
"action"] = action;
250
values
[
"controller"] = obj;
255
values
[
"controller"] = controller;
272
values
[
"page"] = value;
277
values
[
"page"] = CalculatePageName(context, ambientValues, page);
286
values
[
"handler"] = null;
291
values
[
"handler"] = handler;
Microsoft.AspNetCore.Mvc.TagHelpers (3)
AnchorTagHelper.cs (1)
231
routeValues
[
"area"] = Area;
FormActionTagHelper.cs (1)
244
routeValues
[
"area"] = Area;
FormTagHelper.cs (1)
251
routeValues
[
"area"] = Area;
Microsoft.AspNetCore.Mvc.ViewFeatures (3)
RemoteAttribute.cs (3)
66
RouteData
[
"action"] = action;
71
RouteData
[
"controller"] = controller;
98
RouteData
[
"area"] = areaName;
Microsoft.AspNetCore.Routing (8)
Patterns\RoutePatternMatcher.cs (6)
181
values
[
parameter.Name] = defaultValue;
255
values
[
parameter.Name] = captured;
260
values
[
parameter.Name] = _defaultValues[index];
273
values
[
parameter.Name] = requestSegment.ToString();
279
values
[
parameter.Name] = _defaultValues[index];
495
values
[
item.Key] = item.Value;
RouteBase.cs (1)
284
destination
[
kvp.Key] = kvp.Value;
Template\TemplateBinder.cs (1)
509
acceptedValues
[
parameterName] = transformer.TransformOutbound(value);
Microsoft.AspNetCore.Routing.Abstractions (2)
RouteData.cs (2)
172
Values
[
kvp.Key] = kvp.Value;
181
DataTokens
[
kvp.Key] = kvp.Value;
11 references to
Microsoft.AspNetCore.Mvc.Core (5)
Builder\ControllerEndpointRouteBuilderExtensions.cs (2)
156
defaultsDictionary["area"] = defaultsDictionary
[
"area"] ?? areaName;
159
constraintsDictionary["area"] = constraintsDictionary
[
"area"] ?? new StringRouteConstraint(areaName);
Builder\MvcAreaRouteBuilderExtensions.cs (2)
124
defaultsDictionary["area"] = defaultsDictionary
[
"area"] ?? areaName;
127
constraintsDictionary["area"] = constraintsDictionary
[
"area"] ?? new StringRouteConstraint(areaName);
Routing\UrlHelperBase.cs (1)
389
currentPagePath = Convert.ToString(ambientValues
[
"page"], CultureInfo.InvariantCulture);
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\DefaultPageHandlerMethodSelector.cs (1)
149
var handlerName = Convert.ToString(context.RouteData.Values
[
Handler], CultureInfo.InvariantCulture);
Microsoft.AspNetCore.Mvc.TagHelpers (1)
Cache\CacheTagKey.cs (1)
25
Convert.ToString(c
[
key], CultureInfo.InvariantCulture);
Microsoft.AspNetCore.OutputCaching (1)
OutputCacheKeyProvider.cs (1)
286
var routeValueValue = context.HttpContext.Request.RouteValues
[
routeValueName];
Microsoft.AspNetCore.Routing (1)
Matching\DfaMatcher.cs (1)
308
Log.CandidateRejectedByConstraint(_logger, httpContext.Request.Path, endpoint, constraint.Key, constraint.Value, values
[
constraint.Key]);
Microsoft.AspNetCore.Routing.Abstractions (1)
RoutingHttpContextExtensions.cs (1)
41
return httpContext.Features.Get<IRouteValuesFeature>()?.RouteValues
[
key];
Microsoft.AspNetCore.StaticAssets (1)
Development\StaticAssetDevelopmentRuntimeHandler.cs (1)
404
if (values
[
routeKey] is not string path)