XsWin32FileStream.Read Method | |
Reads a block of bytes from the stream and writes the data in a given buffer.
Namespace:
XSharp.IO
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax VIRTUAL METHOD Read(
bytes AS BYTE[],
offset AS LONG,
count AS LONG
) AS LONG
public override int Read(
byte[] bytes,
int offset,
int count
)
Request Example
View SourceParameters
- bytes
- Type: Byte
- offset
- Type: Long
The byte offset in array at which the read bytes will be placed. - count
- Type: Long
The maximum number of bytes to read.
Return Value
Type:
LongThe total number of bytes read into the buffer. This might be less than the number of bytes requested if that number of bytes are not currently available, or zero if the end of the stream is reached.
Exceptions Remarks This method calls the Windows ReadFile() function directly.
See Also