Пример #1
0
        protected virtual void OnDebugInfoReady (MDPLogEventArgs e)
        {
            var handler = DebugInfoReady;

            if (handler != null)
                handler (this, e);
        }
Пример #2
0
 /// <summary>
 ///     if a logging information shall be broadcasted
 ///     raise the event if someone is listening
 /// </summary>
 /// <param name="e">the wrapped logging information</param>
 protected virtual void OnLogInfoReady(MDPLogEventArgs e)
 {
     LogInfoReady?.Invoke(this, e);
 }
Пример #3
0
 /// <summary>
 ///     broadcast the logging information if someone is listening
 /// </summary>
 /// <param name="e"></param>
 protected virtual void OnLogInfoReady(MDPLogEventArgs e)
 {
     LogInfoReady?.Invoke(this, e);
 }