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