Пример #1
0
 /// <summary>
 /// The handler called when an exception is explicitly signaled.
 /// </summary>
 protected virtual void OnErrorSignaled(object sender, ErrorSignalEventArgs args)
 {
     using (args.Exception.TryScopeCallerInfo(args.CallerInfo))
         LogException(args.Exception, args.Context);
 }
Пример #2
0
        /// <summary>
        /// The handler called when an exception is explicitly signaled.
        /// </summary>

        protected virtual void OnErrorSignaled(object sender, ErrorSignalEventArgs args)
        {
            LogException(args.Exception, args.Context);
        }
Пример #3
0
        /// <summary>
        /// The handler called when an exception is explicitly signaled.
        /// </summary>

        protected virtual void OnErrorSignaled(object sender, ErrorSignalEventArgs args)
        {
            using (args.Exception.TryScopeCallerInfo(args.CallerInfo))
                LogException(args.Exception, args.Context);
        }
Пример #4
0
 /// <summary>
 /// The handler called when an exception is explicitly signaled.
 /// </summary>
 protected virtual void OnErrorSignaled(object sender, ErrorSignalEventArgs args)
 {
     LogException(args.Exception, args.Context);
 }
Пример #5
0
 /// <summary>
 /// The handler called when an exception is explicitly signaled.
 /// </summary>
 protected virtual void OnErrorSignaled(object sender, ErrorSignalEventArgs args)
 {
     OnError(args.Exception, args.Context, args.ApplicationName);
 }