1 write to _accumulator
Microsoft.AspNetCore.Http (1)
Features\QueryFeature.cs (1)
136
_accumulator
= new AdaptiveCapacityDictionary<string, StringValues>(StringComparer.OrdinalIgnoreCase);
7 references to _accumulator
Microsoft.AspNetCore.Http (7)
Features\QueryFeature.cs (7)
134
if (
_accumulator
is null)
139
if (!
_accumulator
.TryGetValue(key, out var values))
142
_accumulator
[key] = new StringValues(value);
159
_accumulator
[key] = default;
191
public int KeyCount =>
_accumulator
?.Count ?? 0;
210
_accumulator
[entry.Key] = new StringValues(entry.Value.ToArray());
214
return
_accumulator
?? new AdaptiveCapacityDictionary<string, StringValues>(0, StringComparer.OrdinalIgnoreCase);