Share via


ISequentialStream::Read

Reads a specified number of bytes from the stream object into memory starting at the current read/write location within the stream.

Syntax

HRESULT Read(
   void     *pv,
   ULONG     cb,
   ULONG    *pcbRead);

Parameters

  • pv
    [in] Points to the buffer into which the stream is read. If an error occurs, this value is NULL.

  • cb
    [in] Specifies the number of bytes of data to attempt to read from the stream object.

  • pcbRead
    [out] Pointer to a location where this method writes the actual number of bytes read from the stream object. You can set this pointer to NULL to indicate that you are not interested in this value. In this case, this method does not provide the actual number of bytes read.

Return Code

  • S_OK
    Data was successfully read from the stream object.

  • S_FALSE
    The data could not be read from the stream object.

  • E_PENDING
    Asynchronous Storage only: Part or all of the data to be read is currently unavailable. For more information, see the documentation on the COM interface IFillLockBytes, and see "Asynchronous Storage" in the Structured Storage documentation.

  • STG_E_ACCESSDENIED
    The caller does not have sufficient permissions for reading this stream object.

  • STG_E_INVALIDPOINTER
    One of the pointer values is invalid.

  • STG_E_REVERTED
    The object has been invalidated by a revert operation above it in the transaction tree.

Comments

This method reads bytes from this stream object into memory. The stream object must be opened in STGM_READ mode. This method adjusts the current read/write location within the stream by the actual number of bytes read.

The number of bytes actually read is returned in the pcbRead parameter.

The actual number of bytes read can be fewer than the number of bytes requested if an error occurs or if the end of the stream is reached during the read operation.

Some implementations might return an error if the end of the stream is reached during the read. You must be prepared to deal with the error return or S_OK return values on the end of stream reads.