18 references to _hashTable
PresentationFramework (18)
MS\Internal\WeakDictionary.cs (18)
76IWeakHashtable hashTable = Dict._hashTable; 163IWeakHashtable hashTable = Dict._hashTable; 192_hashTable.SetWeak(key, value); 197return _hashTable.ContainsKey(key); 214if (_hashTable.ContainsKey(key)) 216_hashTable.Remove(key); 224if (_hashTable.ContainsKey(key)) 226value = (TValue)_hashTable[key]; 249if (!_hashTable.ContainsKey(key)) 253return (TValue)_hashTable[key]; 257_hashTable.SetWeak(key, value); 272_hashTable.Clear(); 277if (!_hashTable.ContainsKey(item.Key)) 282if (object.Equals(_hashTable[item.Key], item.Value)) 311get { return _hashTable.Count; } 334foreach (object obj in _hashTable.Keys) 336TKey key = _hashTable.UnwrapKey(obj) as TKey; 339yield return new KeyValuePair<TKey, TValue>(key, (TValue)_hashTable[obj]);