4 writes to singleItemKey
System.Activities (4)
System\Activities\HybridDictionary.cs (4)
110
this.
singleItemKey
= key;
119
this.
singleItemKey
= null;
156
this.
singleItemKey
= null;
199
this.
singleItemKey
= null;
18 references to singleItemKey
System.Activities (18)
System\Activities\HybridDictionary.cs (18)
24
if (this.
singleItemKey
!= null)
49
if (this.
singleItemKey
!= null)
66
if (this.
singleItemKey
!= null)
68
return new ReadOnlyCollection<TKey>(new List<TKey>() { this.
singleItemKey
});
83
if (this.
singleItemKey
== key)
108
if (this.
singleItemKey
== null && this.singleItemValue == null && this.dictionary == null)
113
else if (this.
singleItemKey
!= null)
117
this.dictionary.Add(this.
singleItemKey
, this.singleItemValue);
140
if (this.
singleItemKey
!= null)
142
return this.
singleItemKey
== key;
154
if (this.
singleItemKey
== key)
178
if (this.
singleItemKey
== key)
206
if (this.
singleItemKey
!= null)
208
return this.
singleItemKey
== item.Key && this.singleItemValue == item.Value;
220
if (this.
singleItemKey
!= null)
222
array[arrayIndex] = new KeyValuePair<TKey, TValue>(this.
singleItemKey
, this.singleItemValue);
237
if (this.
singleItemKey
!= null)
239
yield return new KeyValuePair<TKey, TValue>(this.
singleItemKey
, this.singleItemValue);