1 write to _hashtable
PresentationFramework (1)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (1)
614_hashtable = new WeakDictionary<object,T>();
12 references to _hashtable
PresentationFramework (12)
System\Windows\Automation\Peers\ItemsControlAutomationPeer.cs (12)
565_hashtable?.Clear(); 579if (_hashtable == null || !_hashtable.ContainsKey(item)) 582return _hashtable[item] as T; 613if (_hashtable == null) 616if(!_hashtable.ContainsKey(item) && value is not null) 617_hashtable[item] = value; 637if(item != null && _hashtable.ContainsKey(item)) 639_hashtable.Remove(item); 640if(!_hashtable.ContainsKey(item)) 674if(_hashtable == null) 676foreach(KeyValuePair<object,T> dictionaryEntry in _hashtable)