1 write to undoBuffer
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\UndoEngine.cs (1)
36
undoBuffer
= new List<UndoUnit>(capacity);
9 references to undoBuffer
System.Data (9)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\UndoEngine.cs (9)
67
return this.
undoBuffer
.Select(p => p.Description);
116
undoBuffer
.Add(unit);
119
if (
undoBuffer
.Count > capacity)
121
undoBuffer
.RemoveAt(0);
132
if (
undoBuffer
.Count > 0)
134
UndoUnit unitToUndo =
undoBuffer
.Last();
135
undoBuffer
.RemoveAt(
undoBuffer
.Count - 1);
152
undoBuffer
.Add(unitToRedo);