CefUrlRequestClient OnUploadProgress Method Xilium.CefGlue

[This is preliminary documentation and is subject to change.]

Notifies the client of upload progress. |current| denotes the number of bytes sent so far and |total| is the total size of uploading data (or -1 if chunked upload is enabled). This method will only be called if the UR_FLAG_REPORT_UPLOAD_PROGRESS flag is set on the request.

Namespace: Xilium.CefGlue
Assembly: Xilium.CefGlue (in Xilium.CefGlue.dll) Version: 3.2272.2035.0 (3.2272.2035.0)
Syntax

protected abstract void OnUploadProgress(
	CefUrlRequest request,
	long current,
	long total
)

Parameters

request
Type: Xilium.CefGlue CefUrlRequest

[Missing <param name="request"/> documentation for "M:Xilium.CefGlue.CefUrlRequestClient.OnUploadProgress(Xilium.CefGlue.CefUrlRequest,System.Int64,System.Int64)"]

current
Type: OnlineSystem Int64

[Missing <param name="current"/> documentation for "M:Xilium.CefGlue.CefUrlRequestClient.OnUploadProgress(Xilium.CefGlue.CefUrlRequest,System.Int64,System.Int64)"]

total
Type: OnlineSystem Int64

[Missing <param name="total"/> documentation for "M:Xilium.CefGlue.CefUrlRequestClient.OnUploadProgress(Xilium.CefGlue.CefUrlRequest,System.Int64,System.Int64)"]

See Also