1 write to _dictionary
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\SynchronizedKeyedCollection.cs (1)
174_dictionary = new Dictionary<K, T>(_comparer);
20 references to _dictionary
dotnet-svcutil-lib (20)
FrameworkFork\System.ServiceModel\System\ServiceModel\SynchronizedKeyedCollection.cs (20)
70if (_dictionary != null) 71return _dictionary[key]; 87get { return _dictionary; } 92if (_dictionary != null) 93_dictionary.Add(key, item); 97_dictionary.Add(key, item); 129if (_dictionary != null) 130_dictionary.Clear(); 142if (_dictionary != null) 143return _dictionary.ContainsKey(key); 161if ((_dictionary == null) || ((key = GetKeyForItem(item)) == null)) 166if (_dictionary.TryGetValue(key, out itemInDict)) 180_dictionary.Add(key, item); 203if (_dictionary != null) 205if (_dictionary.ContainsKey(key)) 206return this.Remove(_dictionary[key]); 242if (_dictionary != null) 243_dictionary.Remove(key); 255if ((newKey != null) && (_dictionary != null)) 256_dictionary[newKey] = item;