1 write to _hashtable
PresentationFramework (1)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
638
_hashtable
= new WeakDictionary<object,T>();
13 references to _hashtable
PresentationFramework (13)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (13)
587
if (
_hashtable
!= null)
588
_hashtable
.Clear();
603
if (
_hashtable
== null || !
_hashtable
.ContainsKey(item))
606
return
_hashtable
[item] as T;
637
if (
_hashtable
== null)
640
if(!
_hashtable
.ContainsKey(item) && value is T)
641
_hashtable
[item] = value;
661
if(item != null &&
_hashtable
.ContainsKey(item))
663
_hashtable
.Remove(item);
664
if(!
_hashtable
.ContainsKey(item))
698
if(
_hashtable
== null)
700
foreach(KeyValuePair<object,T> dictionaryEntry in
_hashtable
)