1 write to _hashtable
PresentationFramework (1)
src\Framework\System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
642
_hashtable
= new WeakDictionary<object,T>();
13 references to _hashtable
PresentationFramework (13)
src\Framework\System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (13)
591
if (
_hashtable
!= null)
592
_hashtable
.Clear();
607
if (
_hashtable
== null || !
_hashtable
.ContainsKey(item))
610
return
_hashtable
[item] as T;
641
if (
_hashtable
== null)
644
if(!
_hashtable
.ContainsKey(item) && value is T)
645
_hashtable
[item] = value;
666
if(item != null &&
_hashtable
.ContainsKey(item))
668
_hashtable
.Remove(item);
669
if(!
_hashtable
.ContainsKey(item))
703
if(
_hashtable
== null)
705
foreach(KeyValuePair<object,T> dictionaryEntry in
_hashtable
)