控制台应用程序或Windows服务或任何进程的System.Windows.Forms.Application.ThreadException的等效项

时间:2012-07-10 10:59:33

标签: c# catch-all

在WinForms中我使用:

  • System.Windows.Forms.Application.ThreadException
  • System.Windows.Application.UnhandledException

我应该为非Winforms多线程应用程序使用什么?

考虑下面C#.NET 4.0中的完整代码:

using System;
using System.Threading.Tasks;

namespace ExceptionFun
{
    class Program
    {
        static void Main(string[] args)
        {
            AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
            Task.Factory.StartNew(() =>
                {
                    throw new Exception("Oops, someone forgot to add a try/catch block");
                });
        }

        static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
            //never executed
            Console.WriteLine("Logging fatal error");
        }
    }
}

我在stackoverflow上看到了大量类似的问题,但没有一个包含令人满意的答案。大多数答案都是类型:“您应该在代码中包含正确的exeption处理”或“使用AppDomain.CurrentDomain.UnhandledException”。

编辑:似乎我的问题被误解了,所以我重新制定了它并提供了一个较小的代码示例。

1 个答案:

答案 0 :(得分:0)

您不需要任何等效项,CurrentDomain.UnhandledException事件在多线程控制台应用程序中运行良好。但是由于你开始你的线程的方式,它不会在你的情况下触发。您的问题中的处理程序将不会在Windows和控制台应用程序中执行。但是如果你像这样开始你的线程(例如):

new Thread(() => { 
     throw new Exception("Oops, someone forgot to add a try/catch block"); 
}).Start();

它会开火。

在SO的许多帖子中都讨论了Task.Factory.StartNew(...)CurrentDomain.UnhandledException问题。在这里查看一些建议:

How to handle all unhandled exceptions when using Task Parallel Library?

What is the best way to catch exception in Task?