Esempio n. 1
0
 public LogNotifyArgs(LogEntry entry)
 {
     this.entry = entry;
 }
Esempio n. 2
0
 private static void OnNotify(LogEntry entry)
 {
     LogNotifyHandler handler = Notify;
     if (handler != null) {
         handler (new LogNotifyArgs (entry));
     }
 }