| IUrlRequestClientOnDownloadProgress Method  | 
Version 118.6.80 
            Notifies the client of download progress.
            
 
    Namespace: 
   CefSharp
    Assembly:
   CefSharp (in CefSharp.dll) Version: 118.6.80.0 (118.6.80.0)
 Syntax
Syntaxvoid OnDownloadProgress(
	IUrlRequest request,
	long current,
	long total
)
void OnDownloadProgress(
	IUrlRequest^ request, 
	long long current, 
	long long total
)
Parameters
- request
- Type: CefSharpIUrlRequest
 request
- current
- Type: SystemInt64
 denotes the number of bytes received up to the call
- total
- Type: SystemInt64
 is the expected total size of the response (or -1 if not determined).
 See Also
See Also