1 write to _dictionary
System.ServiceModel.Primitives (1)
System\ServiceModel\SynchronizedKeyedCollection.cs (1)
203
_dictionary
= new Dictionary<K, T>(_comparer);
20 references to _dictionary
System.ServiceModel.Primitives (20)
System\ServiceModel\SynchronizedKeyedCollection.cs (20)
73
if (
_dictionary
!= null)
75
return
_dictionary
[key];
94
get { return
_dictionary
; }
99
if (
_dictionary
!= null)
101
_dictionary
.Add(key, item);
106
_dictionary
.Add(key, item);
146
if (
_dictionary
!= null)
148
_dictionary
.Clear();
163
if (
_dictionary
!= null)
165
return
_dictionary
.ContainsKey(key);
186
if ((
_dictionary
== null) || ((key = GetKeyForItem(item)) == null))
193
if (
_dictionary
.TryGetValue(key, out itemInDict))
210
_dictionary
.Add(key, item);
238
if (
_dictionary
!= null)
240
if (
_dictionary
.ContainsKey(key))
242
return Remove(
_dictionary
[key]);
283
if (
_dictionary
!= null)
285
_dictionary
.Remove(key);
300
if ((newKey != null) && (
_dictionary
!= null))
302
_dictionary
[newKey] = item;