Exemplo n.º 1
0
        /// <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);
        }
Exemplo n.º 2
0
 protected virtual void OnLogInfoReady (TitanicLogEventArgs e)
 {
     LogInfoReady?.Invoke (this, e);
 }