[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Reads data from the stream to a buffer
Source position: classesh.inc line 953
public procedure TStream.ReadBuffer( |
var Buffer; |
Count: LongInt |
); |
ReadBuffer reads Count bytes of the stream into Buffer. If the stream does not contain Count bytes, then an exception is raised.
ReadBuffer should be used to read in a fixed number of bytes, such as when reading structures or the content of variables. If the number of bytes is not determined, use TStream.Read instead. ReadBuffer uses Read internally to do the actual reading.
If the stream does not allow to read Count bytes, then an exception is raised.
|
Reads data from the stream to a buffer and returns the number of bytes read. |
|
|
Writes data from a buffer to the stream |