/// <exception cref="System.IO.IOException"/> public virtual void ReadFully(byte[] arr, int off, int len) { lock (this) { BlockReaderUtil.ReadFully(this, arr, off, len); } }
/// <exception cref="System.IO.IOException"/> public virtual int ReadAll(byte[] buf, int off, int len) { lock (this) { return(BlockReaderUtil.ReadAll(this, buf, off, len)); } }
/// <exception cref="System.IO.IOException"/> public virtual void ReadFully(byte[] buf, int off, int len) { BlockReaderUtil.ReadFully(this, buf, off, len); }