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