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