3 writes to Store
Microsoft.AspNetCore.Http (3)
Internal\RequestCookieCollection.cs (3)
30Store = new AdaptiveCapacityDictionary<string, string>(StringComparer.OrdinalIgnoreCase); 35Store = new AdaptiveCapacityDictionary<string, string>(capacity, StringComparer.OrdinalIgnoreCase); 41Store = new AdaptiveCapacityDictionary<string, string>(store);
17 references to Store
Microsoft.AspNetCore.Http (17)
Internal\RequestCookieCollection.cs (17)
50if (Store == null) 72var store = collection.Store!; 90if (Store == null) 94return Store.Count; 102if (Store == null) 106return Store.Keys; 112if (Store == null) 116return Store.ContainsKey(key); 121if (Store == null) 127return Store.TryGetValue(key, out value); 136if (Store == null || Store.Count == 0) 142return new Enumerator(Store.GetEnumerator()); 151if (Store == null || Store.Count == 0) 166if (Store == null || Store.Count == 0)