OnDownloadProgressDelegate Delegate |
Version 101.0.180
Notifies the client of download progress.
Namespace:
CefSharp.Fluent
Assembly:
CefSharp.Core (in CefSharp.Core.dll) Version: 101.0.180.0
Syntax public delegate void OnDownloadProgressDelegate(
IUrlRequest request,
long current,
long total
)
public delegate void OnDownloadProgressDelegate(
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