Version 108.4.130 
            Read a chunk of the stream
            
 
    Namespace: 
   CefSharp.DevTools.IO
    Assembly:
   CefSharp (in CefSharp.dll) Version: 108.4.130.0 (108.4.130.0)
 Syntax
Syntaxpublic 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
- 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: 
TaskReadResponsereturns System.Threading.Tasks.Task<ReadResponse>
 See Also
See Also