Example #1
0
 private void Log_Notify(object sender, LogArgs e)
 {
     if (NotificationRequested != null)
     {
         NotificationRequested.Invoke(sender, e);
     }
 }
Example #2
0
 private void LogNotifier(object sender, LogArgs e)
 {
     NotificationRequested?.Invoke(sender, e);
 }