1 write to _expandingAccumulator
Microsoft.AspNetCore.Http (1)
Features\QueryFeature.cs (1)
163
_expandingAccumulator
= new AdaptiveCapacityDictionary<string, List<string>>(capacity: 5, StringComparer.OrdinalIgnoreCase);
5 references to _expandingAccumulator
Microsoft.AspNetCore.Http (5)
Features\QueryFeature.cs (5)
161
if (
_expandingAccumulator
is null)
172
_expandingAccumulator
[key] = list;
177
_expandingAccumulator
[key].Add(value);
205
if (
_expandingAccumulator
!= null)
208
foreach (var entry in
_expandingAccumulator
)