1 write to _hashtable
PresentationFramework (1)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
605
_hashtable
= new WeakDictionary<object,T>();
12 references to _hashtable
PresentationFramework (12)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (12)
556
_hashtable
?.Clear();
570
if (
_hashtable
== null || !
_hashtable
.ContainsKey(item))
573
return
_hashtable
[item] as T;
604
if (
_hashtable
== null)
607
if(!
_hashtable
.ContainsKey(item) && value is not null)
608
_hashtable
[item] = value;
628
if(item != null &&
_hashtable
.ContainsKey(item))
630
_hashtable
.Remove(item);
631
if(!
_hashtable
.ContainsKey(item))
665
if(
_hashtable
== null)
667
foreach(KeyValuePair<object,T> dictionaryEntry in
_hashtable
)