Example #1
0
 private void FireTaskNotification(object sender, TaskNotificationEventArgs e)
 {
     if (InvokeRequired)
     {
         FireTaskNotificationCallback d = new FireTaskNotificationCallback(FireTaskNotification);
         this?.Invoke(d, new object[] { sender, e });
     }
     else
     {
         TaskNotification?.Invoke(sender, e);
     }
 }
Example #2
0
 private void Runner_TaskNotification(object sender, TaskNotificationEventArgs e)
 {
     FireTaskNotification(sender, e);
 }