1 write to Store
Microsoft.AspNetCore.Http (1)
QueryCollectionInternal.cs (1)
27Store = store;
7 references to Store
Microsoft.AspNetCore.Http (7)
QueryCollectionInternal.cs (7)
41public int Count => Store.Count; 46public ICollection<string> Keys => Store.Keys; 53public bool ContainsKey(string key) => Store.ContainsKey(key); 61public bool TryGetValue(string key, out StringValues value) => Store.TryGetValue(key, out value); 67public Enumerator GetEnumerator() => new Enumerator(Store.GetEnumerator()); 74=> Store.GetEnumerator(); 80IEnumerator IEnumerable.GetEnumerator() => Store.GetEnumerator();