2 writes to NewValue
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\DictionaryEditChange.cs (1)
67NewValue = this.OldValue,
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (1)
333NewValue = newValue,
8 references to NewValue
System.Data (8)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\DictionaryEditChange.cs (8)
36if ((oldValue == null && this.NewValue == null) || 37(oldValue != null && this.NewValue != null && oldValue.GetCurrentValue().Equals(this.NewValue.GetCurrentValue()))) 42((ModelItemDictionaryImpl)this.Dictionary).EditCore(this.Key, this.NewValue); 44ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreateDictionaryValueChanged(this.Dictionary, this.Key, this.OldValue, this.NewValue); 51if (this.NewValue != null) 53this.ModelTreeManager.modelService.OnModelItemAdded(this.NewValue, changeInfo); 66OldValue = this.NewValue,