This method of the IStream Interface reads bytes from the stream object into a byte array, starting at a specified offset from the current seek pointer.
public int Read(byte buf[], int off, int len);
Returns the number of bytes actually read.
buf | The buffer that the bytes are read into. |
off | The offset in the stream to begin reading from. |
len | The number of bytes to read. |