| UrlRequestClientOnUploadProgress Method  | 
Version 118.6.80 
            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.Fluent
    Assembly:
   CefSharp.Core (in CefSharp.Core.dll) Version: 118.6.80.0
 Syntax
Syntaxprotected override void OnUploadProgress(
	IUrlRequest request,
	long current,
	long total
)
protected:
virtual void OnUploadProgress(
	IUrlRequest^ request, 
	long long current, 
	long long total
) override
Parameters
- request
- Type: CefSharpIUrlRequest
 request
- current
- Type: SystemInt64
 denotes the number of bytes sent so far.
- total
- Type: SystemInt64
 is the total size of uploading data (or -1 if chunked upload is enabled).
 See Also
See Also