| UrlRequestClientOnDownloadData Method  | 
Version 118.6.80 
            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: 118.6.80.0
 Syntax
Syntaxprotected override void OnDownloadData(
	IUrlRequest request,
	Stream data
)
protected:
virtual void OnDownloadData(
	IUrlRequest^ request, 
	Stream^ data
) override
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
See Also