Click or drag to resize

UrlRequestClientOnDownloadData Method

Version 94.4.20
Called when some part of the response is read. This method will not be called if the NoDownloadData flag is set on the request.

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
protected virtual void OnDownloadData(
	IUrlRequest request,
	Stream data
)

Parameters

request
Type: CefSharpIUrlRequest
request
data
Type: System.IOStream
A stream containing the bytes received since the last call. Cannot be used outside the scope of this method.
See Also