Version 130.1.90
Read a chunk of the stream
Namespace: CefSharp.DevTools.IOAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<ReadResponse> ReadAsync(
string handle,
int? offset = null,
int? size = null
)
public:
Task<ReadResponse^>^ ReadAsync(
String^ handle,
Nullable<int> offset = nullptr,
Nullable<int> size = nullptr
)
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
TaskReadResponsereturns System.Threading.Tasks.Task<ReadResponse>
See Also