예제 #1
0
파일: Log.cs 프로젝트: jacintos/papeles
 public LogNotifyEventArgs(LogEntry entry)
 {
     this.entry = entry;
 }
예제 #2
0
파일: Log.cs 프로젝트: jacintos/papeles
 private static void OnNotify(LogEntry entry)
 {
     EventHandler<LogNotifyEventArgs> handler = Notify;
     if (handler != null) {
         handler (null, new LogNotifyEventArgs (entry));
     }
 }