G
Guest
Here's a (I think) simple question:
If I issue multiple async writes on a NetworkStream, is the data guaranteed to be sent in the correct order?
i.e.
stream.BeginWrite(.. data A ...);
stream.BeginWrite(.. data B ...);
Will data A always be completely sent before B is sent?
I figure/guess no, but it would be useful if BeginWrite could be used like this...
Thanks for listening
If I issue multiple async writes on a NetworkStream, is the data guaranteed to be sent in the correct order?
i.e.
stream.BeginWrite(.. data A ...);
stream.BeginWrite(.. data B ...);
Will data A always be completely sent before B is sent?
I figure/guess no, but it would be useful if BeginWrite could be used like this...
Thanks for listening