public Overrider(StackStateHistory owner)
 {
     _original = new StackStateHistory();
     foreach (var handler in owner._state)
     {
         handler.Resume();
     }
 }
Example #2
0
 public static void Capture(object target)
 {
     CurrentHistory[target] =  new StackStateHistory();
 }