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)
591if (_hashtable != null) 592_hashtable.Clear(); 607if (_hashtable == null || !_hashtable.ContainsKey(item)) 610return _hashtable[item] as T; 641if (_hashtable == null) 644if(!_hashtable.ContainsKey(item) && value is T) 645_hashtable[item] = value; 666if(item != null && _hashtable.ContainsKey(item)) 668_hashtable.Remove(item); 669if(!_hashtable.ContainsKey(item)) 703if(_hashtable == null) 705foreach(KeyValuePair<object,T> dictionaryEntry in _hashtable)