示例#1
0
文件: Log.cs 项目: GNOME/longomatch
 public LogNotifyArgs(LogEntry entry)
 {
     this.entry = entry;
 }
示例#2
0
文件: Log.cs 项目: GNOME/longomatch
 private static void OnNotify(LogEntry entry)
 {
     LogNotifyHandler handler = Notify;
     if (handler != null) {
         handler (new LogNotifyArgs (entry));
     }
 }