[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Reads Count bytes from the stream into buffer.
Source position: classesh.inc line 1049
public function TCustomMemoryStream.Read( |
var Buffer; |
Count: LongInt |
):LongInt; override; |
Read reads Count bytes from the stream into the memory pointed to by buffer. It returns the number of bytes actually read.
This method overrides the TStream.Read method of TStream. It will read as much bytes as are still available in the memory area pointer to by Memory. After the bytes are read, the internal stream position is updated.
|
Pointer to the data kept in the memory stream. |
|
|
Reads data from the stream to a buffer and returns the number of bytes read. |