3 types derived from Change
System.Data (3)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Annotations\NotifyArgumentVariableAnnotationTextChanged.cs (1)
14internal class NotifyArgumentVariableAnnotationTextChanged : Change
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelChange.cs (1)
11abstract class ModelChange : Change
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\WorkflowViewStateService.cs (1)
174internal class ViewStateChange : Change
24 references to Change
System.Data (24)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Annotations\NotifyArgumentVariableAnnotationTextChanged.cs (1)
38public override Change GetInverse()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\EditingScopeUndoUnit.cs (2)
53foreach (Change change in editingScope.Changes) 55Change inverseChange = change.GetInverse();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\AttachablePropertyChange.cs (1)
48public override Change GetInverse()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\Change.cs (1)
15public abstract Change GetInverse();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\CollectionChange.cs (1)
88public override Change GetInverse()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\DictionaryChange.cs (1)
98public override Change GetInverse()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\DictionaryEditChange.cs (1)
60public override Change GetInverse()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\EditingScope.cs (11)
20List<Change> changes; 21List<Change> appliedChanges; 32this.changes = new List<Change>(); 111public List<Change> Changes 171appliedChanges = new List<Change>(); 177List<Change> changesToApply = this.Changes.GetRange(startIndex, this.Changes.Count - startIndex); 180foreach (Change change in changesToApply) 251List<Change> revertChanges = new List<Change>(); 252foreach (Change change in this.appliedChanges) 257foreach (Change change in revertChanges)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\FakeModelPropertyImpl.cs (1)
179public override Change GetInverse()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (1)
648internal void AddToCurrentEditingScope(Change change)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\PropertyChange.cs (1)
52public override Change GetInverse()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\PropertyReferenceChange.cs (1)
37public override Change GetInverse()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\WorkflowViewStateService.cs (1)
201public override Change GetInverse()