1 write to dictionary
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\DictionaryItemsCollection.cs (1)
21this.dictionary = dictionary as IDictionary<TKey, TValue>;
10 references to dictionary
System.Activities.Presentation (10)
System.Activities.Presentation\System\Activities\Presentation\DictionaryItemsCollection.cs (10)
22Fx.Assert(this.dictionary != null, "dictionary should be instantiated"); 23foreach (KeyValuePair<TKey, TValue> kvpair in this.dictionary) 38this.dictionary.Remove(oldKey); 39if (this.dictionary.ContainsKey(newKey)) 54this.dictionary[key] = value; 66this.dictionary.Clear(); 78if (ShouldUpdateDictionary && this.dictionary.ContainsKey(item.Key)) 95this.dictionary.Remove(item.Key); 120this.dictionary.Clear(); 123this.dictionary.Add(new KeyValuePair<TKey, TValue>(item.Key, item.Value));