Esempio n. 1
0
        protected virtual void OnDebugInfoReady(LogInfoEventArgs e)
        {
            var handler = DebugInfoReady;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Esempio 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(LogInfoEventArgs e)
        {
            var handler = LogInfoReady;

            if (handler != null)
                handler(this, e);
        }