Click or drag to resize

CefResourceHandlerReadResponse Method

Read response data. If data is available immediately copy up to |bytes_to_read| bytes into |data_out|, set |bytes_read| to the number of bytes copied, and return true. To read the data at a later time set |bytes_read| to 0, return true and call CefCallback::Continue() when the data is available. To indicate response completion return false.

Namespace:  Internal.Xilium.CefGlue
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
protected abstract bool ReadResponse(
	Stream response,
	int bytesToRead,
	out int bytesRead,
	CefCallback callback
)

Parameters

response
Type: System.IOStream
bytesToRead
Type: SystemInt32
bytesRead
Type: SystemInt32
callback
Type: Internal.Xilium.CefGlueCefCallback

Return Value

Type: Boolean
See Also