Click or drag to resize

UrlRequestClientOnDownloadData Method

Version 130.1.90
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.Fluent
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
protected override void OnDownloadData(
	IUrlRequest request,
	Stream data
)

Parameters

request  IUrlRequest
request
data  Stream
A stream containing the bytes received since the last call. Cannot be used outside the scope of this method.
See Also