Beispiel #1
0
        protected virtual void OnLogInfoReady(TitanicLogEventArgs e)
        {
            var handler = LogInfoReady;

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