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