1 write to _hashtable
PresentationFramework (1)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
608_hashtable = new WeakDictionary<object,T>();
12 references to _hashtable
PresentationFramework (12)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (12)
559_hashtable?.Clear(); 573if (_hashtable == null || !_hashtable.ContainsKey(item)) 576return _hashtable[item] as T; 607if (_hashtable == null) 610if(!_hashtable.ContainsKey(item) && value is not null) 611_hashtable[item] = value; 631if(item != null && _hashtable.ContainsKey(item)) 633_hashtable.Remove(item); 634if(!_hashtable.ContainsKey(item)) 668if(_hashtable == null) 670foreach(KeyValuePair<object,T> dictionaryEntry in _hashtable)