1 write to _hashtable
PresentationFramework (1)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
626
_hashtable
= new WeakDictionary<object,T>();
13 references to _hashtable
PresentationFramework (13)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (13)
575
if (
_hashtable
!= null)
576
_hashtable
.Clear();
591
if (
_hashtable
== null || !
_hashtable
.ContainsKey(item))
594
return
_hashtable
[item] as T;
625
if (
_hashtable
== null)
628
if(!
_hashtable
.ContainsKey(item) && value is T)
629
_hashtable
[item] = value;
649
if(item != null &&
_hashtable
.ContainsKey(item))
651
_hashtable
.Remove(item);
652
if(!
_hashtable
.ContainsKey(item))
686
if(
_hashtable
== null)
688
foreach(KeyValuePair<object,T> dictionaryEntry in
_hashtable
)