2 writes to items
System.ServiceModel.Internals (2)
System\Runtime\MruCache.cs (2)
42this.items = new Dictionary<TKey, CacheEntry>(); 46this.items = new Dictionary<TKey, CacheEntry>(comparer);
9 references to items
System.ServiceModel.Internals (9)
System\Runtime\MruCache.cs (9)
54return this.items.Count; 67if (this.items.Count == this.highWatermark) 76TValue item = this.items[keyRemove].value; 77this.items.Remove(keyRemove); 86this.items.Add(key, entry); 102this.items.Clear(); 112if (this.items.TryGetValue(key, out entry)) 114this.items.Remove(key); 150bool found = this.items.TryGetValue(key, out entry);