How can you check if a network socket (System.Net.Sockets.Socket) is still connected if the other host doesn't send you a packet when it disconnects (e.g. because it disconnected ungracefully)?
|
As Programming Hero answered
It works like this:
|
|||||||||||||
|
|
The If the socket has been closed by your own actions (disposing the socket, calling methods to disconnect), You can check the property after the exception has occurred, but it's not reliable before. |
|||
|
|
|
As zendar wrote, it is nice to use the
|
|||
|
|
|
See http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.connected.aspx Seems that is does what you need. |
|||||||||
|
|
The best way is simply to have your client send a PING every X seconds, and for the server to assume it is disconnected after not having received one for a while. I encountered the same issue as you when using sockets, and this was the only way I could do it. The socket.connected property was never correct. In the end though, I switched to using WCF because it was far more reliable than sockets. |
|||
|
|
|
Use |
|||||
|