Exemplo n.º 1
0
        protected virtual void OnDebugInfoReady (MDPLogEventArgs e)
        {
            var handler = DebugInfoReady;

            if (handler != null)
                handler (this, e);
        }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }