1 write to _hashtable
PresentationFramework (1)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
605_hashtable = new WeakDictionary<object,T>();
12 references to _hashtable
PresentationFramework (12)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (12)
556_hashtable?.Clear(); 570if (_hashtable == null || !_hashtable.ContainsKey(item)) 573return _hashtable[item] as T; 604if (_hashtable == null) 607if(!_hashtable.ContainsKey(item) && value is not null) 608_hashtable[item] = value; 628if(item != null && _hashtable.ContainsKey(item)) 630_hashtable.Remove(item); 631if(!_hashtable.ContainsKey(item)) 665if(_hashtable == null) 667foreach(KeyValuePair<object,T> dictionaryEntry in _hashtable)