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