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