3 writes to dictionaryStore
System.ServiceModel (3)
System\ServiceModel\Channels\ContextDictionary.cs (3)
22
this.
dictionaryStore
= new Dictionary<string, string>();
27
this.
dictionaryStore
= new Dictionary<string, string>();
54
localEmpty.
dictionaryStore
= new ReadOnlyDictionaryInternal<string, string>(new Dictionary<string, string>(0));
18 references to dictionaryStore
System.ServiceModel (18)
System\ServiceModel\Channels\ContextDictionary.cs (18)
37
this.
dictionaryStore
.Add(pair);
64
get { return this.
dictionaryStore
.Count; }
69
get { return this.
dictionaryStore
.IsReadOnly; }
74
get { return this.
dictionaryStore
.Keys; }
79
get { return this.
dictionaryStore
.Values; }
87
return this.
dictionaryStore
[key];
96
this.
dictionaryStore
[key] = value;
108
this.
dictionaryStore
.Add(key, value);
123
this.
dictionaryStore
.Add(item);
128
this.
dictionaryStore
.Clear();
143
return this.
dictionaryStore
.Contains(item);
150
return this.
dictionaryStore
.ContainsKey(key);
155
this.
dictionaryStore
.CopyTo(array, arrayIndex);
161
return this.
dictionaryStore
.GetEnumerator();
166
return ((IEnumerable)this.
dictionaryStore
).GetEnumerator();
172
return this.
dictionaryStore
.Remove(key);
187
return this.
dictionaryStore
.Remove(item);
193
return this.
dictionaryStore
.TryGetValue(key, out value);