private void OnNotification(string notification)
 {
     if (Notification != null)
     {
         var args = new NotificationEventArgs(notification);
         Notification.BeginInvoke(this, args, null, null);
     }
 }
Beispiel #2
0
 void Progress_Notification(object sender, NotificationEventArgs e)
 {
     Log(e.Notification);
 }