Click or drag to resize

IOClientReadAsync Method

Version 91.1.160
Read a chunk of the stream

Namespace:  CefSharp.DevTools.IO
Assembly:  CefSharp (in CefSharp.dll) Version: 91.1.160.0 (91.1.160.0)
Syntax
public Task<ReadResponse> ReadAsync(
	string handle,
	Nullable<int> offset = null,
	Nullable<int> size = null
)

Parameters

handle
Type: SystemString
Handle of the stream to read.
offset (Optional)
Type: SystemNullableInt32
Seek to the specified offset before reading (if not specificed, proceed with offsetfollowing the last read). Some types of streams may only support sequential reads.
size (Optional)
Type: SystemNullableInt32
Maximum number of bytes to read (left upon the agent discretion if not specified).

Return Value

Type: TaskReadResponse
returns System.Threading.Tasks.Task<ReadResponse>
See Also