示例#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));
     }
 }