This method of the IStream Interface writes bytes from a byte array into the stream object, starting at a specified offset from the current seek pointer.
public int Write(byte buf[], int off, int len);
Returns The number of bytes actually written.
buf | The buffer to write from. |
off | The offset in the array to begin writing from. |
len | The number of bytes to write. |