Esempio n. 1
0
File: Log.cs Progetto: rubenv/tripod
 private static void OnNotify (LogEntry entry)
 {
     LogNotifyHandler handler = Notify;
     if (handler != null) {
         handler (new LogNotifyArgs (entry));
     }
 }
Esempio n. 2
0
File: Log.cs Progetto: rubenv/tripod
 public LogNotifyArgs (LogEntry entry)
 {
     this.entry = entry;
 }
Esempio n. 3
0
 internal LogNotifyArgs(LogEntry entry)
 {
     this.entry = entry;
 }