CefResourceHandler ReadResponse Method Xilium.CefGlue

[This is preliminary documentation and is subject to change.]

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: Xilium.CefGlue
Assembly: Xilium.CefGlue (in Xilium.CefGlue.dll) Version: 3.2272.2035.0 (3.2272.2035.0)
Syntax

protected abstract bool ReadResponse(
	Stream response,
	int bytesToRead,
	out int bytesRead,
	CefCallback callback
)

Parameters

response
Type: OnlineSystem.IO Stream

[Missing <param name="response"/> documentation for "M:Xilium.CefGlue.CefResourceHandler.ReadResponse(System.IO.Stream,System.Int32,System.Int32@,Xilium.CefGlue.CefCallback)"]

bytesToRead
Type: OnlineSystem Int32

[Missing <param name="bytesToRead"/> documentation for "M:Xilium.CefGlue.CefResourceHandler.ReadResponse(System.IO.Stream,System.Int32,System.Int32@,Xilium.CefGlue.CefCallback)"]

bytesRead
Type: OnlineSystem Int32 

[Missing <param name="bytesRead"/> documentation for "M:Xilium.CefGlue.CefResourceHandler.ReadResponse(System.IO.Stream,System.Int32,System.Int32@,Xilium.CefGlue.CefCallback)"]

callback
Type: Xilium.CefGlue CefCallback

[Missing <param name="callback"/> documentation for "M:Xilium.CefGlue.CefResourceHandler.ReadResponse(System.IO.Stream,System.Int32,System.Int32@,Xilium.CefGlue.CefCallback)"]

Return Value

Type: OnlineBoolean

[Missing <returns> documentation for "M:Xilium.CefGlue.CefResourceHandler.ReadResponse(System.IO.Stream,System.Int32,System.Int32@,Xilium.CefGlue.CefCallback)"]

See Also