Re: Handling Unexpected Exceptions in C# windows application
From: Anil K. Gupta (anylcumar_at_gmail.com)
Date: 02/04/05
- Next message: Rob R. Ainscough: "Re: How to "kill" a tcp port..."
- Previous message: Abhishek: "Re: FTP Server"
- In reply to: Ignacio Machin \( .NET/ C# MVP \): "Re: Handling Unexpected Exceptions in C# windows application"
- Messages sorted by: [ date ] [ thread ]
Date: 3 Feb 2005 22:48:44 -0800
Hello,
I tried using Application.ThreadException but with no use. Can you
please guide me on using Application.ThreadException in a better way
and also how do i wrap my main method in try..catch.
Thank you,
Anil K Gupta
"Ignacio Machin \( .NET/ C# MVP \)" <ignacio.machin AT dot.state.fl.us> wrote in message news:<uW$1rZfCFHA.3120@TK2MSFTNGP12.phx.gbl>...
> 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: Rob R. Ainscough: "Re: How to "kill" a tcp port..."
- Previous message: Abhishek: "Re: FTP Server"
- In reply to: Ignacio Machin \( .NET/ C# MVP \): "Re: Handling Unexpected Exceptions in C# windows application"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|