22 references to RouteValueDictionary
Microsoft.AspNetCore.Http.Abstractions.Tests (2)
RouteValueDictionaryTests.cs (2)
46var dict = new RouteValueDictionary(other); 65var dict = new RouteValueDictionary(other);
Microsoft.AspNetCore.Http.Microbenchmarks (2)
RouteValueDictionaryBenchmark.cs (2)
31new RouteValueDictionary(_arrayValuesEmpty); 37return new RouteValueDictionary(_arrayValues);
Microsoft.AspNetCore.Mvc.Core (1)
Routing\DynamicControllerEndpointMatcherPolicy.cs (1)
133var values = new RouteValueDictionary(dynamicValues);
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\DynamicPageEndpointMatcherPolicy.cs (1)
132var values = new RouteValueDictionary(dynamicValues);
Microsoft.AspNetCore.Routing (4)
RouteBase.cs (1)
244var result = defaults == null ? new RouteValueDictionary() : new RouteValueDictionary(defaults);
Template\TemplateBinder.cs (3)
83var filters = new RouteValueDictionary(_defaults); 115var filters = new RouteValueDictionary(_defaults); 406var combinedValues = new RouteValueDictionary(acceptedValues);
Microsoft.AspNetCore.Routing.Abstractions (5)
RouteData.cs (4)
45_dataTokens = new RouteValueDictionary(other._dataTokens); 50_values = new RouteValueDictionary(other._values); 157_dataTokens?.Count > 0 ? new RouteValueDictionary(_dataTokens) : null, 159_values?.Count > 0 ? new RouteValueDictionary(_values) : null);
VirtualPathData.cs (1)
40_dataTokens = dataTokens == null ? null : new RouteValueDictionary(dataTokens);
Microsoft.AspNetCore.Routing.Microbenchmarks (1)
LinkGeneration\LinkGenerationGithubBenchmark.cs (1)
59values: new RouteValueDictionary(_lookUpValues)));
Microsoft.AspNetCore.Routing.Tests (6)
TestObjects\CapturingConstraint.cs (1)
19Values = new RouteValueDictionary(values);
Tree\TreeRouterTest.cs (5)
1747nestedValues = new RouteValueDictionary(c.RouteData.Values); 1762var originalValues = new RouteValueDictionary(context.RouteData.Values); 1784nestedValues = new RouteValueDictionary(c.RouteData.Values); 1828nestedValues = new RouteValueDictionary(c.RouteData.Values); 1874nestedValues = new RouteValueDictionary(c.RouteData.Values);