Inheritance: System.EventArgs
Esempio n. 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);
 }
Esempio n. 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);
        }
Esempio n. 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);
        }
Esempio n. 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);
 }
Esempio n. 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);
 }