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)
134if (_accumulator is null) 139if (!_accumulator.TryGetValue(key, out var values)) 142_accumulator[key] = new StringValues(value); 159_accumulator[key] = default; 191public int KeyCount => _accumulator?.Count ?? 0; 210_accumulator[entry.Key] = new StringValues(entry.Value.ToArray()); 214return _accumulator ?? new AdaptiveCapacityDictionary<string, StringValues>(0, StringComparer.OrdinalIgnoreCase);