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