コード例 #1
0
ファイル: Log.cs プロジェクト: rubenv/tripod
 private static void OnNotify (LogEntry entry)
 {
     LogNotifyHandler handler = Notify;
     if (handler != null) {
         handler (new LogNotifyArgs (entry));
     }
 }
コード例 #2
0
ファイル: Log.cs プロジェクト: rubenv/tripod
 public LogNotifyArgs (LogEntry entry)
 {
     this.entry = entry;
 }
コード例 #3
0
ファイル: Log.cs プロジェクト: kelsieflynn/banshee
 internal LogNotifyArgs(LogEntry entry)
 {
     this.entry = entry;
 }