Exceptions occurred in threads will not be caught by global exception handler (implemented at program.cs). These exceptions will take the application down. In the following code snippet, the exception thrown by a thread will take the entire application down.
// ThreadExceptionForm.cs
private void buttonThreadEx_Click(object sender, EventArgs e)
{
Thread t = new Thread(
delegate()
{
// this Exception will take this application down!
//
throw new Exception("New exception from child thread");
}
);
t.Start();
}
private void buttonEx_Click(object sender, EventArgs e)
{
// This will be caught at global Exception handler
//
throw new Exception("New exception from main thread.");
}
// program.cs
// Global exception handling
//
static void Main()
{
Application.EnableVisualStyles();
Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new ThreadExceptionForm());
}
static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
{
MessageBox.Show(e.Exception.Message, "We caught this one");
}
To avoid this, always surround the thread code with try\catch.
private void buttonThreadTryCatchEx_Click(object sender, EventArgs e)
{
Thread t = new Thread(
delegate()
{
try
{
// this Exception will take this application down!
//
throw new Exception("New exception from child thread");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "This was caught at thread's try/catch");
}
}
);
t.Start();
}
download the source code.
3 comments:
TINN HEDGE - Titanium Screw and Stitch - Classic Home Furniture
Buy TINN HEDGE from Titanium-Arts. Contact Information. titanium linear compensator TI-TINN HEDGE in tube supplier Las Vegas, NV. We offer a wide variety of babyliss nano titanium flat iron furniture for sale from a friendly Rating: 4.6 titanium armor · 13 titanium plumbing votes
ln504 jordan 13 retro,aj 1 unc,jordan 4 university blue,jordan 4 retro,jordan 11 shoes,yeezy 350 black,jordan 12 retro,jordan 1 university blue,jordan 1 og
gs872 camperisrael,finisterre ireland,outdoor research helium,camper nz,puma quebec,superga argentina,fila shoes,guessschweiz,fjällräven suomi sf241
Post a Comment