I am using a BinaryReader on top of a NetworkStream to read data off of a network. This has worked really well for me, but I want to understand what's going on behind the scenes, so I took a look at the documentation for BinaryReader and found it to be extremely sparse.
My question is this: What will BinaryReader.ReadBytes(bufferSize)
do if bufferSize
bytes are not present on the network stream when I call ReadBytes
?
In my mind there are a few options:
1) Read any bytes that are present on the network stream and return only that many
2) Wait until bufferSize
bytes are present on the stream, then read
3) Throw an exception
I assume option 2 is happening, since I've never received any exceptions and all my data is received whole, not in pieces. However, I would like to know for sure what is going on. If someone could enlighten me, I would be grateful.
I believe it actually goes for hidden option 4:
This is subtly different from your option 2 as it does drain the stream as data becomes available - it doesn't wait until it could read all of the data in one go.
It's easy to show that it does return a lower number of bytes than you asked for if it reaches the end:
It's harder to prove the looping part, without a custom stream which would explicitly require multiple
Read
calls to return all the data.The documentation isn't as clear as it might be, but the return value part is at least somewhat helpful:
Note the final part that I've highlighted, and compare that with
Stream.Read
:If you're expecting an exact amount of data and only that amount will be useful, I suggest you write a
ReadExactly
method which callsRead
and throwsEndOfStreamException
if you need more data than the stream provided before it was closed.