Ejemplo n.º 1
0
 private void OnExecuted(TaskServiceEventArgs e)
 {
     if (this.executed == null)
     {
         return;
     }
     this.executed((object)this, e);
 }
Ejemplo n.º 2
0
 protected virtual void OnRedone(TaskServiceEventArgs e)
 {
     this.IsUndoing = false;
     if (this.redone == null)
     {
         return;
     }
     this.redone((object)this, e);
 }