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