FileStreamReadAsync Method |
Asynchronously reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
Namespace: CMS.FileSystemStorageAssembly: CMS.IO (in CMS.IO.dll) Version: 12.0.0
Syntax public override Task<int> ReadAsync(
byte[] buffer,
int offset,
int count,
CancellationToken cancellationToken
)
Parameters
- buffer
- Type: SystemByte
The buffer to write the data into. - offset
- Type: SystemInt32
The byte offset in buffer at which to begin writing data from the stream. - count
- Type: SystemInt32
The maximum number of bytes to read. - cancellationToken
- Type: System.ThreadingCancellationToken
The token to monitor for cancellation requests.
Return Value
Type:
TaskInt32See Also