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