private static void OnNotify (LogEntry entry) { LogNotifyHandler handler = Notify; if (handler != null) { handler (new LogNotifyArgs (entry)); } }
public LogNotifyArgs (LogEntry entry) { this.entry = entry; }
internal LogNotifyArgs(LogEntry entry) { this.entry = entry; }