1 write to _hashtable
PresentationFramework (1)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
615
_hashtable
= new WeakDictionary<object,T>();
12 references to _hashtable
PresentationFramework (12)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (12)
566
_hashtable
?.Clear();
580
if (
_hashtable
== null || !
_hashtable
.ContainsKey(item))
583
return
_hashtable
[item] as T;
614
if (
_hashtable
== null)
617
if(!
_hashtable
.ContainsKey(item) && value is not null)
618
_hashtable
[item] = value;
638
if(item != null &&
_hashtable
.ContainsKey(item))
640
_hashtable
.Remove(item);
641
if(!
_hashtable
.ContainsKey(item))
675
if(
_hashtable
== null)
677
foreach(KeyValuePair<object,T> dictionaryEntry in
_hashtable
)