2 writes to _items
System.ServiceModel.Primitives (2)
Internals\System\Runtime\MruCache.cs (2)
61_items = new Dictionary<TKey, CacheEntry>(); 65_items = new Dictionary<TKey, CacheEntry>(comparer);
10 references to _items
System.ServiceModel.Primitives (10)
Internals\System\Runtime\MruCache.cs (10)
74return _items.Count; 90if (_items.Count == _highWatermark) 99TValue item = _items[keyRemove].value; 100_items.Remove(keyRemove); 109_items.Add(key, entry); 133foreach (CacheEntry cacheEntry in _items.Values) 153_items.Clear(); 164if (_items.TryGetValue(key, out entry)) 166_items.Remove(key); 204bool found = _items.TryGetValue(key, out entry);