コード例 #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));
     }
 }