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