Sockets

  • Thread starter Thread starter John Smith
  • Start date Start date
J

John Smith

How do I check to see if my Socket Connection State is still open or not?
Is there a way that I can get the status of the current state of the Socket
Connection?
 
John Smith said:
How do I check to see if my Socket Connection State is still open or
not? Is there a way that I can get the status of the current state of
the Socket Connection?

You cant - its part of TCP design. The only way to check a socket is to try to read or write from it.


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"

Get your ASP.NET in gear with IntraWeb!
http://www.atozed.com/IntraWeb/
 
Back
Top