2 writes to privateDictionary
System.ServiceModel.Internals (2)
System\Runtime\Collections\OrderedDictionary.cs (2)
20this.privateDictionary = new OrderedDictionary(); 27this.privateDictionary = new OrderedDictionary();
37 references to privateDictionary
System.ServiceModel.Internals (37)
System\Runtime\Collections\OrderedDictionary.cs (37)
31this.privateDictionary.Add(pair.Key, pair.Value); 40return this.privateDictionary.Count; 61if (this.privateDictionary.Contains(key)) 63return (TValue)this.privateDictionary[(object)key]; 77this.privateDictionary[(object)key] = value; 85List<TKey> keys = new List<TKey>(this.privateDictionary.Count); 87foreach (TKey key in this.privateDictionary.Keys) 104List<TValue> values = new List<TValue>(this.privateDictionary.Count); 106foreach (TValue value in this.privateDictionary.Values) 131this.privateDictionary.Add(key, value); 136this.privateDictionary.Clear(); 141if (item.Key == null || !this.privateDictionary.Contains(item.Key)) 147return this.privateDictionary[(object)item.Key].Equals(item.Value); 158return this.privateDictionary.Contains(key); 173if (array.Rank > 1 || arrayIndex >= array.Length || array.Length - arrayIndex < this.privateDictionary.Count) 179foreach (DictionaryEntry entry in this.privateDictionary) 188foreach (DictionaryEntry entry in this.privateDictionary) 203this.privateDictionary.Remove(item.Key); 219if (this.privateDictionary.Contains(key)) 221this.privateDictionary.Remove(key); 237bool keyExists = this.privateDictionary.Contains(key); 238value = keyExists ? (TValue)this.privateDictionary[(object)key] : default(TValue); 245this.privateDictionary.Add(key, value); 250this.privateDictionary.Clear(); 255return this.privateDictionary.Contains(key); 260return this.privateDictionary.GetEnumerator(); 267return ((IDictionary)this.privateDictionary).IsFixedSize; 275return this.privateDictionary.IsReadOnly; 283return this.privateDictionary.Keys; 289this.privateDictionary.Remove(key); 296return this.privateDictionary.Values; 304return this.privateDictionary[key]; 308this.privateDictionary[key] = value; 314this.privateDictionary.CopyTo(array, index); 321return this.privateDictionary.Count; 329return ((ICollection)this.privateDictionary).IsSynchronized; 337return ((ICollection)this.privateDictionary).SyncRoot;