1 write to instance
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
46this.instance = new DictionaryWrapper(instance);
23 references to instance
System.Data (23)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (23)
131Fx.Assert(this.instance != null, "instance should not be null"); 229get { return this.instance.Count; } 234get { return this.instance.IsReadOnly; } 262Fx.Assert(this.instance != null, "instance cannot be null"); 263ContentPropertyAttribute contentAttribute = TypeDescriptor.GetAttributes(this.instance.Value)[typeof(ContentPropertyAttribute)] as ContentPropertyAttribute; 386Fx.Assert(this.instance != null, "instance cannot be null"); 387RuntimeNamePropertyAttribute runtimeNamePropertyAttribute = TypeDescriptor.GetAttributes(this.instance.Value)[typeof(RuntimeNamePropertyAttribute)] as RuntimeNamePropertyAttribute; 409if (this.instance.IsReadOnly) 441if (this.instance.IsReadOnly) 454if (this.instance.IsReadOnly) 463if (this.instance.IsReadOnly) 556return this.instance.Value; 662Fx.Assert(this.instance != null, "instance should not be null"); 668this.instance[(key == null) ? null : key.GetCurrentValue()] = null != value ? value.GetCurrentValue() : null; 747Fx.Assert(this.instance != null, "instance should not be null"); 771this.instance.Add(key == null ? null : key.GetCurrentValue(), null != value ? value.GetCurrentValue() : null); 809Fx.Assert(this.instance != null, "instance should not be null"); 827this.instance.Clear(); 883Fx.Assert(this.instance != null, "instance should not be null"); 945this.instance.Remove(key == null ? null : key.GetCurrentValue()); 961IEnumerator dictionaryEnumerator = this.instance.GetEnumerator(); 966object keyObject = instance.GetKeyFromCurrent(current); 968ModelItem value = this.WrapObject(instance.GetValueFromCurrent(current));