18 references to _hashTable
PresentationFramework (18)
MS\Internal\WeakDictionary.cs (18)
77IWeakHashtable hashTable = Dict._hashTable; 164IWeakHashtable hashTable = Dict._hashTable; 193_hashTable.SetWeak(key, value); 198return _hashTable.ContainsKey(key); 215if (_hashTable.ContainsKey(key)) 217_hashTable.Remove(key); 225if (_hashTable.ContainsKey(key)) 227value = (TValue)_hashTable[key]; 250if (!_hashTable.ContainsKey(key)) 254return (TValue)_hashTable[key]; 258_hashTable.SetWeak(key, value); 273_hashTable.Clear(); 278if (!_hashTable.ContainsKey(item.Key)) 283if (object.Equals(_hashTable[item.Key], item.Value)) 312get { return _hashTable.Count; } 335foreach (object obj in _hashTable.Keys) 337TKey key = _hashTable.UnwrapKey(obj) as TKey; 340yield return new KeyValuePair<TKey, TValue>(key, (TValue)_hashTable[obj]);