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)
55
return
_items
.Count;
68
if (
_items
.Count == _highWatermark)
77
TValue item =
_items
[keyRemove].value;
78
_items
.Remove(keyRemove);
87
_items
.Add(key, entry);
103
_items
.Clear();
113
if (
_items
.TryGetValue(key, out entry))
115
_items
.Remove(key);
151
bool found =
_items
.TryGetValue(key, out entry);