2

Using the Application.ThreadExceptionEventHandler, is it possible to determine which thread caused the exception (the thread id)?

The same question applies to using the AppDomain.UnhandledExceptionEventHandler to catch non-UI thread exceptions.

If the answer is no, is there any other way to determine which thread raised the unhandled exception in such cases?

Mike Dinescu
  • 54,171
  • 16
  • 118
  • 151

1 Answers1

2

I haven't checked, but I'd expect the handler to be executed in the thread which threw the exception - in which case Thread.CurrentThread would be what you want. I can't see how it would make much sense for the handler to be executed in any other thread.

Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194