36 references to RouteValueDictionary
Microsoft.AspNetCore.Http.Results (5)
AcceptedAtRoute.cs (1)
41: this(routeName, new RouteValueDictionary(routeValues))
AcceptedAtRouteOfT.cs (1)
44: this(routeName, new RouteValueDictionary(routeValues), value)
CreatedAtRoute.cs (1)
41: this(routeName, new RouteValueDictionary(routeValues))
CreatedAtRouteOfT.cs (1)
44: this(routeName, new RouteValueDictionary(routeValues), value)
RedirectToRouteHttpResult.cs (1)
99new RouteValueDictionary(routeValues),
Microsoft.AspNetCore.Mvc.Core (18)
AcceptedAtActionResult.cs (1)
38RouteValues = routeValues == null ? null : new RouteValueDictionary(routeValues);
AcceptedAtRouteResult.cs (1)
46RouteValues = routeValues == null ? null : new RouteValueDictionary(routeValues);
Builder\ControllerEndpointRouteBuilderExtensions.cs (5)
114new RouteValueDictionary(defaults), 115new RouteValueDictionary(constraints), 116new RouteValueDictionary(dataTokens)); 155var defaultsDictionary = new RouteValueDictionary(defaults); 158var constraintsDictionary = new RouteValueDictionary(constraints);
Builder\MvcAreaRouteBuilderExtensions.cs (2)
123var defaultsDictionary = new RouteValueDictionary(defaults); 126var constraintsDictionary = new RouteValueDictionary(constraints);
CreatedAtActionResult.cs (1)
38RouteValues = routeValues == null ? null : new RouteValueDictionary(routeValues);
CreatedAtRouteResult.cs (1)
46RouteValues = routeValues == null ? null : new RouteValueDictionary(routeValues);
RedirectToActionResult.cs (1)
125RouteValues = routeValues == null ? null : new RouteValueDictionary(routeValues);
RedirectToPageResult.cs (1)
153RouteValues = routeValues == null ? null : new RouteValueDictionary(routeValues);
RedirectToRouteResult.cs (1)
122RouteValues = routeValues == null ? null : new RouteValueDictionary(routeValues);
Routing\ControllerLinkGeneratorExtensions.cs (1)
208var explicitValues = new RouteValueDictionary(values);
Routing\PageLinkGeneratorExtensions.cs (1)
208var explicitValues = new RouteValueDictionary(values);
Routing\UrlHelperBase.cs (1)
102return new RouteValueDictionary(values);
UrlHelperExtensions.cs (1)
478var routeValues = new RouteValueDictionary(values);
Microsoft.AspNetCore.Routing (13)
LinkGeneratorEndpointNameAddressExtensions.cs (4)
48new RouteValueDictionary(values), 120return generator.GetPathByAddress<string>(endpointName, new RouteValueDictionary(values), pathBase, fragment, options); 201new RouteValueDictionary(values), 315return generator.GetUriByAddress<string>(endpointName, new RouteValueDictionary(values), scheme, host, pathBase, fragment, options);
LinkGeneratorRouteValuesAddressExtensions.cs (4)
44var address = CreateAddress(httpContext, routeName, new(values)); 119var address = CreateAddress(httpContext: null, routeName, new(values)); 197var address = CreateAddress(httpContext, routeName, new(values)); 308var address = CreateAddress(httpContext: null, routeName, new(values));
MapRouteRouteBuilderExtensions.cs (3)
121new RouteValueDictionary(defaults), 122new RouteValueDictionary(constraints)!, 123new RouteValueDictionary(dataTokens),
Patterns\DefaultRoutePatternTransformer.cs (1)
27return SubstituteRequiredValues(original, new RouteValueDictionary(requiredValues));
Patterns\RoutePatternFactory.cs (1)
1154return values is null ? null : new RouteValueDictionary(values);