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)
575if (_hashtable != null) 576_hashtable.Clear(); 591if (_hashtable == null || !_hashtable.ContainsKey(item)) 594return _hashtable[item] as T; 625if (_hashtable == null) 628if(!_hashtable.ContainsKey(item) && value is T) 629_hashtable[item] = value; 649if(item != null && _hashtable.ContainsKey(item)) 651_hashtable.Remove(item); 652if(!_hashtable.ContainsKey(item)) 686if(_hashtable == null) 688foreach(KeyValuePair<object,T> dictionaryEntry in _hashtable)