Click or drag to resize

UrlRequestClientOnUploadProgress Method

Version 130.1.90
Notifies the client of upload progress. This method will only be called if the UR_FLAG_REPORT_UPLOAD_PROGRESS flag is set on the request.

Namespace: CefSharp
Assembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax
protected virtual void OnUploadProgress(
	IUrlRequest request,
	long current,
	long total
)

Parameters

request  IUrlRequest
request
current  Int64
denotes the number of bytes sent so far.
total  Int64
is the total size of uploading data (or -1 if chunked upload is enabled).
See Also