Example #1
0
 public void notify(string result)
 {
     if (NotifyInvoked != null)
     {
         var args = new NotifyInvokedEventArgs { Result = result };
         NotifyInvoked(this, args);
     }
 }
Example #2
0
 public void notify(string result)
 {
     if (NotifyInvoked != null)
     {
         var args = new NotifyInvokedEventArgs {
             Result = result
         };
         NotifyInvoked(this, args);
     }
 }