1 write to _dictionary
System.ServiceModel.Primitives (1)
System\ServiceModel\SynchronizedKeyedCollection.cs (1)
203_dictionary = new Dictionary<K, T>(_comparer);
20 references to _dictionary
System.ServiceModel.Primitives (20)
System\ServiceModel\SynchronizedKeyedCollection.cs (20)
73if (_dictionary != null) 75return _dictionary[key]; 94get { return _dictionary; } 99if (_dictionary != null) 101_dictionary.Add(key, item); 106_dictionary.Add(key, item); 146if (_dictionary != null) 148_dictionary.Clear(); 163if (_dictionary != null) 165return _dictionary.ContainsKey(key); 186if ((_dictionary == null) || ((key = GetKeyForItem(item)) == null)) 193if (_dictionary.TryGetValue(key, out itemInDict)) 210_dictionary.Add(key, item); 238if (_dictionary != null) 240if (_dictionary.ContainsKey(key)) 242return Remove(_dictionary[key]); 283if (_dictionary != null) 285_dictionary.Remove(key); 300if ((newKey != null) && (_dictionary != null)) 302_dictionary[newKey] = item;