2 writes to table
System.Messaging (2)
System\Messaging\MessageQueue.cs (2)
4162
this.
table
= new Dictionary<Key, CacheEntry<Value>>();
4261
table
= newTable;
11 references to table
System.Messaging (11)
System\Messaging\MessageQueue.cs (11)
4171
if (
table
.ContainsKey(key))
4173
CacheEntry<Value> entry =
table
[key];
4195
table
[key] = null;
4200
if (
table
.ContainsKey(key))
4201
entry =
table
[key]; //which could be null also
4206
table
[key] = entry;
4207
if (
table
.Count >= capacity)
4227
if (
table
.ContainsKey(key))
4228
table
.Remove(key);
4244
foreach (KeyValuePair<Key, CacheEntry<Value>> kv in
table
)
4262
capacity = 2 *
table
.Count;