1 write to instance
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1036
this.
instance
= instance;
17 references to instance
System.Data (17)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (17)
1051
get { return this.
instance
; }
1058
return (this.isDictionary ? ((IDictionary)
instance
).IsReadOnly : (bool)this.isReadOnlyProperty.GetValue(this.
instance
, null));
1066
return (this.isDictionary ? ((IDictionary)
instance
).Count : (int)this.countProperty.GetValue(this.
instance
, null));
1077
return ((IDictionary)
instance
)[key];
1081
return this.indexingProperty.GetValue(this.
instance
, new object[] { key });
1088
((IDictionary)
instance
)[key] = value;
1092
this.indexingProperty.SetValue(this.
instance
, value, new object[] { key });
1159
((IDictionary)
instance
).Add(key, value);
1163
this.addMethod.Invoke(this.
instance
, new object[] { key, value });
1171
((IDictionary)
instance
).Clear();
1175
this.clearMethod.Invoke(this.
instance
, null);
1183
return ((IDictionary)
instance
).GetEnumerator();
1187
return (IEnumerator)this.getEnumeratorMethod.Invoke(this.
instance
, null);
1195
((IDictionary)
instance
).Remove(key);
1199
this.removeMethod.Invoke(this.
instance
, new object[] { key });