I have a couple questions about using BinaryReader on a NetworkStream.
1. With BinaryReader, am I correct in assuming that all read methods that read in a specific data type (such as ReadBytes(), ReadByte(), ReadInt32(), etc.) will block until there are enough bytes available in the stream to return one of those types? Or does it throw some exception if there is not enough data available?
2. If it does in fact wait for enough data to become available for reading a specific type, would it be possible to create a class that inherits from BinaryReader which includes asynchronous read methods? Would there be any problems with this approach?
I've done a lot of programming where I used asynchronous methods, but I am just now learning how to create them myself. From what I understand the easiest way to do this is to create a delegate with the same signature as the original synchronous method, and then call BeginInvoke on that delegate in the Async BeginXXX method. In the EndXXX method, call the EndInvoke method on the delegate.
I think I might be making this overly simplistic, but here's some code I came up with:
public class AsyncBinaryReader : BinaryReader
{
private delegate byte[] ReadBytesHandler(int count);
private ReadBytesHandler m_readBytes;
public AsyncBinaryReader(Stream stream, Encoding encoding) : base(stream, encoding)
{
m_readBytes = new ReadBytesHandler(ReadBytes);
}
public IAsyncResult BeginReadBytes(int count, AsyncCallback callback, object state)
{
return m_readBytes.BeginInvoke(count, callback, state);
}
public byte[] EndReadBytes(IAsyncResult asyncResult)
{
return m_readBytes.EndInvoke(asyncResult);
}
}
Thanks in advance for any help...go easy on me, I'm a student.
1. With BinaryReader, am I correct in assuming that all read methods that read in a specific data type (such as ReadBytes(), ReadByte(), ReadInt32(), etc.) will block until there are enough bytes available in the stream to return one of those types? Or does it throw some exception if there is not enough data available?
2. If it does in fact wait for enough data to become available for reading a specific type, would it be possible to create a class that inherits from BinaryReader which includes asynchronous read methods? Would there be any problems with this approach?
I've done a lot of programming where I used asynchronous methods, but I am just now learning how to create them myself. From what I understand the easiest way to do this is to create a delegate with the same signature as the original synchronous method, and then call BeginInvoke on that delegate in the Async BeginXXX method. In the EndXXX method, call the EndInvoke method on the delegate.
I think I might be making this overly simplistic, but here's some code I came up with:
public class AsyncBinaryReader : BinaryReader
{
private delegate byte[] ReadBytesHandler(int count);
private ReadBytesHandler m_readBytes;
public AsyncBinaryReader(Stream stream, Encoding encoding) : base(stream, encoding)
{
m_readBytes = new ReadBytesHandler(ReadBytes);
}
public IAsyncResult BeginReadBytes(int count, AsyncCallback callback, object state)
{
return m_readBytes.BeginInvoke(count, callback, state);
}
public byte[] EndReadBytes(IAsyncResult asyncResult)
{
return m_readBytes.EndInvoke(asyncResult);
}
}
Thanks in advance for any help...go easy on me, I'm a student.