1 write to _hashtable
PresentationFramework (1)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
608
_hashtable
= new WeakDictionary<object,T>();
12 references to _hashtable
PresentationFramework (12)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (12)
559
_hashtable
?.Clear();
573
if (
_hashtable
== null || !
_hashtable
.ContainsKey(item))
576
return
_hashtable
[item] as T;
607
if (
_hashtable
== null)
610
if(!
_hashtable
.ContainsKey(item) && value is not null)
611
_hashtable
[item] = value;
631
if(item != null &&
_hashtable
.ContainsKey(item))
633
_hashtable
.Remove(item);
634
if(!
_hashtable
.ContainsKey(item))
668
if(
_hashtable
== null)
670
foreach(KeyValuePair<object,T> dictionaryEntry in
_hashtable
)