Re: Handling Unexpected Exceptions in C# windows application
From: Ignacio Machin \( .NET/ C# MVP \) ("Ignacio)
Date: 02/03/05
- Next message: Dakkar: "re:' character in c#"
- Previous message: Mark Reed: "Re: chromeless(?) window in c# form?"
- In reply to: Anil K. Gupta: "Handling Unexpected Exceptions in C# windows application"
- Next in thread: Anil K. Gupta: "Re: Handling Unexpected Exceptions in C# windows application"
- Reply: Anil K. Gupta: "Re: Handling Unexpected Exceptions in C# windows application"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 3 Feb 2005 08:43:59 -0500
Hi,
You should wrap your connection openning in a try/catch. this will avoid
your application to terminate, regarding your question, you can use
Application.ThreadException event to capture any unhandled exception, this
will avoid the error dialog from the framework, also you could wrap your
main() method in a try/catch
cheers,
-- Ignacio Machin, ignacio.machin AT dot.state.fl.us Florida Department Of Transportation "Anil K. Gupta" <anylcumar@gmail.com> wrote in message news:2770ae9d.0502030420.60852f74@posting.google.com... > Hello, > > I am developing an application similar to MSN Messenger using C#.Net. > I am using the Frameworks' System.Net.Sockets class for creating > sockets and then communicating.Everything seems to work fine when > there is internet connection, but once the application is started and > then if there is a breakdown in the network then the application is > getting terminated unexpectedly. I tried to handle the exceptions but > nothing is working. The application is throwing > "System.Net.Sockets.SocketException-An existing connection was > forcibly closed by Remote host" exception. Someone please guide me on > this and as well as catching any kind of unexpected exceptions that > occur in Windows Applications. > > Thank you in Advance, > Anil K Gupta
- Next message: Dakkar: "re:' character in c#"
- Previous message: Mark Reed: "Re: chromeless(?) window in c# form?"
- In reply to: Anil K. Gupta: "Handling Unexpected Exceptions in C# windows application"
- Next in thread: Anil K. Gupta: "Re: Handling Unexpected Exceptions in C# windows application"
- Reply: Anil K. Gupta: "Re: Handling Unexpected Exceptions in C# windows application"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|