UrlRequestClientOnDownloadProgress Method |
Version 106.0.290
Notifies the client of download progress.
Namespace:
CefSharp.Fluent
Assembly:
CefSharp.Core (in CefSharp.Core.dll) Version: 106.0.290.0
Syntax protected override void OnDownloadProgress(
IUrlRequest request,
long current,
long total
)
protected:
virtual void OnDownloadProgress(
IUrlRequest^ request,
long long current,
long long total
) override
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