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