示例#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
 internal LogNotifyArgs(LogEntry entry)
 {
     this.entry = entry;
 }