1 instantiation of CacheEntry
System.Messaging (1)
System\Messaging\MessageQueue.cs (1)
4205entry = new CacheEntry<Value>();
8 references to CacheEntry
System.Messaging (8)
System\Messaging\MessageQueue.cs (8)
4139private Dictionary<Key, CacheEntry<Value>> table; 4162this.table = new Dictionary<Key, CacheEntry<Value>>(); 4173CacheEntry<Value> entry = table[key]; 4199CacheEntry<Value> entry = null; 4239Dictionary<Key, CacheEntry<Value>> newTable = new Dictionary<Key, CacheEntry<Value>>(); 4244foreach (KeyValuePair<Key, CacheEntry<Value>> kv in table) 4246CacheEntry<Value> iterEntry = kv.Value;