I have a server/client app.
Both use BinaryReader/Writer when communicating.
When the client and server are exchanging messages rapidly, many in a given second, and I shutdown the server (via a built in command, orderly shutdown) most of the time (but not always) the client's BinaryReader.ReadString() method throws a EndOfStreamException, which is fine. The thing that I don't understand is why doesn't this exception change the TcpClient.Connected property to 'false'?
while(true){
try{
BinaryReader.ReadString()
}
catch(IOException){
if(!TcpClient.Connected)
break;
//BinaryWriter.Write() - this will, eventually, change Connected property to 'false'
}
}
This will loop endlessly. I thought that the Connected property changes on unsuccessful network read/write. If BinaryReader is throwing exceptions then it isn't successfully reading, is it?
If I throw in a BinaryWriter.Write(), then the endless loop is broken because Connected property is changed to 'false'.
Related question, does an EndOfStreamException always indicate a broken network connection or could it mean a temporary problem?
By design. From the Remarks section of the MSDN Library article for TcpClient.Connected:
The workaround you discovered is the correct one.