1 write to _hashtable
PresentationFramework (1)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
614
_hashtable
= new WeakDictionary<object,T>();
12 references to _hashtable
PresentationFramework (12)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (12)
565
_hashtable
?.Clear();
579
if (
_hashtable
== null || !
_hashtable
.ContainsKey(item))
582
return
_hashtable
[item] as T;
613
if (
_hashtable
== null)
616
if(!
_hashtable
.ContainsKey(item) && value is not null)
617
_hashtable
[item] = value;
637
if(item != null &&
_hashtable
.ContainsKey(item))
639
_hashtable
.Remove(item);
640
if(!
_hashtable
.ContainsKey(item))
674
if(
_hashtable
== null)
676
foreach(KeyValuePair<object,T> dictionaryEntry in
_hashtable
)