Click or drag to resize

IOClientReadAsync Method

Version 94.4.20
Read a chunk of the stream

Namespace:  CefSharp.DevTools.IO
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public Task<ReadResponse> ReadAsync(
	string handle,
	int? offset = null,
	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