/// <exception cref="Exception">A delegate callback throws an exception. </exception> protected virtual void OnLogInfoReady(TitanicLogEventArgs e) { var handler = LogInfoReady; if (handler != null) handler (this, e); }
protected virtual void OnLogInfoReady (TitanicLogEventArgs e) { LogInfoReady?.Invoke (this, e); }