41 references to RouteValueDictionary
Microsoft.AspNetCore.Diagnostics (1)
_generated\3\ExtensionsExceptionJsonContext.RouteValueDictionary.g.cs (1)
31ObjectCreator = () => new global::Microsoft.AspNetCore.Routing.RouteValueDictionary(),
Microsoft.AspNetCore.Http (1)
Features\RouteValuesFeature.cs (1)
26_routeValues = new RouteValueDictionary();
Microsoft.AspNetCore.Http.Abstractions (1)
Routing\RouteValueDictionary.cs (1)
95return new RouteValueDictionary()
Microsoft.AspNetCore.Http.Results (5)
AcceptedAtRoute.cs (1)
56RouteValues = routeValues ?? new RouteValueDictionary();
AcceptedAtRouteOfT.cs (1)
62RouteValues = routeValues ?? new RouteValueDictionary();
CreatedAtRoute.cs (1)
56RouteValues = routeValues ?? new RouteValueDictionary();
CreatedAtRouteOfT.cs (1)
62RouteValues = routeValues ?? new RouteValueDictionary();
RedirectToRouteHttpResult.cs (1)
125RouteValues = routeValues ?? new RouteValueDictionary();
Microsoft.AspNetCore.Identity (1)
IdentityApiEndpointRouteBuilderExtensions.cs (1)
403var routeValues = new RouteValueDictionary()
Microsoft.AspNetCore.Mvc.Core (4)
Builder\ControllerEndpointRouteBuilderExtensions.cs (1)
508return new DynamicControllerMetadata(new RouteValueDictionary()
Routing\ActionEndpointFactory.cs (1)
189var requiredValues = new RouteValueDictionary();
Routing\AttributeRoute.cs (1)
81var defaults = new RouteValueDictionary();
Routing\UrlHelperBase.cs (1)
35_routeValueDictionary = new RouteValueDictionary();
Microsoft.AspNetCore.Mvc.RazorPages (1)
Builder\RazorPagesEndpointRouteBuilderExtensions.cs (1)
355return new DynamicPageMetadata(new RouteValueDictionary()
Microsoft.AspNetCore.Mvc.TagHelpers (3)
AnchorTagHelper.cs (1)
229routeValues = new RouteValueDictionary();
FormActionTagHelper.cs (1)
240routeValues = new RouteValueDictionary();
FormTagHelper.cs (1)
247routeValues = new RouteValueDictionary();
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
RemoteAttributeBase.cs (1)
39RouteData = new RouteValueDictionary();
Microsoft.AspNetCore.Routing (18)
DefaultLinkParser.cs (1)
123values = new RouteValueDictionary();
LinkGeneratorEndpointNameAddressExtensions.cs (3)
88values ?? new(), 148return generator.GetPathByAddress<string>(endpointName, values ?? new(), pathBase, fragment, options); 260values ?? new(),
LinkGeneratorRouteValuesAddressExtensions.cs (1)
360ExplicitValues = values ?? new(),
Matching\DfaMatcher.cs (2)
160state.Values ??= new RouteValueDictionary(); 170state.Values ??= new RouteValueDictionary();
Matching\DfaMatcherBuilder.cs (1)
374var routeValues = new RouteValueDictionary();
Patterns\RoutePatternMatcher.cs (2)
30Defaults = defaults ?? new RouteValueDictionary(); 347var outValues = new RouteValueDictionary();
RequestDelegateRouteBuilderExtensions.cs (1)
260var constraints = new RouteValueDictionary
RouteBase.cs (2)
47DataTokens = dataTokens ?? new RouteValueDictionary(); 244var result = defaults == null ? new RouteValueDictionary() : new RouteValueDictionary(defaults);
Template\TemplateMatcher.cs (1)
33Defaults = defaults ?? new RouteValueDictionary();
Tree\LinkGenerationDecisionTree.cs (1)
21private static readonly RouteValueDictionary EmptyAmbientValues = new RouteValueDictionary();
Tree\TreeRouteBuilder.cs (2)
145entry.Defaults = new RouteValueDictionary(); 219entry.Defaults = new RouteValueDictionary();
Tree\TreeRouter.cs (1)
296var inputValues = new RouteValueDictionary();
Microsoft.AspNetCore.Routing.Abstractions (3)
RouteData.cs (2)
74_dataTokens = new RouteValueDictionary(); 106_values = new RouteValueDictionary();
VirtualPathData.cs (1)
52_dataTokens = new RouteValueDictionary();
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
238get => _routeValues ??= new RouteValueDictionary();
Microsoft.AspNetCore.StaticAssets (1)
Development\StaticAssetDevelopmentRuntimeHandler.cs (1)
326new RouteValueDictionary { ["path"] = new FileExistsConstraint(environment) });