Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 55299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T17:21:20+00:00 2026-05-10T17:21:20+00:00

I can hookup to AppDomain.CurrentDomain.UnhandledException to log exceptions from background threads, but how do

  • 0

I can hookup to AppDomain.CurrentDomain.UnhandledException to log exceptions from background threads, but how do I prevent them terminating the runtime?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T17:21:21+00:00Added an answer on May 10, 2026 at 5:21 pm

    First, you really should try not to have exceptions thrown – and not handled – in a background thread. If you control the way your delegate is run, encapsulate it in a try catch block and figure a way to pass the exception information back to your main thread (using EndInvoke if you explicitly called BeginInvoke, or by updating some shared state somewhere).

    Ignoring a unhandled exception can be dangerous. If you have a real un-handlable exception (OutOfMemoryException comes into mind), there’s not much you can do anyway and your process is basically doomed.

    Back to .Net 1.1, an unhandled exception in a backgroundthread would just be thrown to nowhere and the main thread would gladly plough on. And that could have nasty repercussions. So in .Net 2.0 this behavior has changed.

    Now, an unhandled exception thrown in a thread which is not the main thread will terminate the process. You may be notified of this (by subscribing to the event on the AppDomain) but the process will die nonetheless.

    Since this can be inconvenient (when you don’t know what will be run in the thread and you are not absolutely sure it’s properly guarded, and your main thread must be resilient), there’s a workaround. It’s intended as a legacy settings (meaning, it’s strongly suggested you make sure you don’t have stray threads) but you can force the former behavior this way :

    Just add this setting to your service/application/whatever configuration file :

    <configuration>   <runtime>     <!-- the following setting prevents the host from closing when an unhandled exception is thrown -->     <legacyUnhandledExceptionPolicy enabled='1' />   </runtime> </configuration> 

    It doesn’t seem to work with ASP.NET, though.

    For more information (and a huge warning that this setting may not be supported in upcoming versions of the CLR) see http://msdn.microsoft.com/en-us/library/ms228965.aspx

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 68k
  • Answers 68k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer You might want to check out Nose and the Xunit… May 11, 2026 at 12:10 pm
  • added an answer I think a better approach is to encapsulate the many… May 11, 2026 at 12:10 pm
  • added an answer Try to access the batch files path like this: echo… May 11, 2026 at 12:10 pm

Related Questions

I can hookup to AppDomain.CurrentDomain.UnhandledException to log exceptions from background threads, but how do
How can I hook up an event to a function name I have defined
I can do an eval(something()); to execute the code dynamically in JavaScript. Is there
I can't seem to find details on how to unsubscribe from ubiquity commands. The
I can set the PHP include path in the php.ini : include_path = /path/to/site/includes/
I can create a menu item in the Windows Explorer context menu by adding
I can connect with the DataContext to the Oracle database however I get errors
I can never remember the differences in regular expression syntax used by tools like
I can't tell from the Python documentation whether the re.compile(x) function may throw an
I can make a DAO recordset in VB6/Access do anything - add data, clean

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.