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)
587if (_hashtable != null) 588_hashtable.Clear(); 603if (_hashtable == null || !_hashtable.ContainsKey(item)) 606return _hashtable[item] as T; 637if (_hashtable == null) 640if(!_hashtable.ContainsKey(item) && value is T) 641_hashtable[item] = value; 661if(item != null && _hashtable.ContainsKey(item)) 663_hashtable.Remove(item); 664if(!_hashtable.ContainsKey(item)) 698if(_hashtable == null) 700foreach(KeyValuePair<object,T> dictionaryEntry in _hashtable)