2 writes to _items
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\MruCache.cs (2)
43_items = new Dictionary<TKey, CacheEntry>(); 47_items = new Dictionary<TKey, CacheEntry>(comparer);
9 references to _items
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\MruCache.cs (9)
55return _items.Count; 68if (_items.Count == _highWatermark) 77TValue item = _items[keyRemove].value; 78_items.Remove(keyRemove); 87_items.Add(key, entry); 103_items.Clear(); 113if (_items.TryGetValue(key, out entry)) 115_items.Remove(key); 151bool found = _items.TryGetValue(key, out entry);