1 write to directory
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\CollectibleLRUCache.cs (1)
64
directory
= new Dictionary<TKey, CollectibleNode>(capacity, comparer);
12 references to directory
System.ServiceModel.Activation (12)
System\ServiceModel\Activation\CollectibleLRUCache.cs (12)
96
if (
directory
.TryGetValue(key, out node))
126
if (
directory
.ContainsKey(node.GetKey()))
128
directory
.Remove(node.GetKey());
138
directory
.Add(node.GetKey(), node);
156
if (this.
directory
.Count > 0)
158
this.currentCollectibleBatch.AddRange(this.
directory
.Values);
159
this.
directory
.Clear();
195
directory
.Remove(currentCollectibleBatch[i].GetKey());
223
if (this.
directory
.Count > 0)
225
this.currentCollectibleBatch.AddRange(this.
directory
.Values);
243
return this.
directory
.Count;
254
CollectibleNode[] array =
directory
.Values.ToArray();