Click or drag to resize

IOClientReadAsync Method

Version 130.1.90
Read a chunk of the stream

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

Parameters

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

Return Value

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