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