1 write to _hashtable
PresentationFramework (1)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
615_hashtable = new WeakDictionary<object,T>();
12 references to _hashtable
PresentationFramework (12)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (12)
566_hashtable?.Clear(); 580if (_hashtable == null || !_hashtable.ContainsKey(item)) 583return _hashtable[item] as T; 614if (_hashtable == null) 617if(!_hashtable.ContainsKey(item) && value is not null) 618_hashtable[item] = value; 638if(item != null && _hashtable.ContainsKey(item)) 640_hashtable.Remove(item); 641if(!_hashtable.ContainsKey(item)) 675if(_hashtable == null) 677foreach(KeyValuePair<object,T> dictionaryEntry in _hashtable)