CefDownloadHandler OnDownloadUpdated Method Xilium.CefGlue

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

Called when a download's status or progress information has been updated. This may be called multiple times before and after OnBeforeDownload(). Execute |callback| either asynchronously or in this method to cancel the download if desired. Do not keep a reference to |download_item| outside of this method.

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

protected virtual void OnDownloadUpdated(
	CefBrowser browser,
	CefDownloadItem downloadItem,
	CefDownloadItemCallback callback
)

Parameters

browser
Type: Xilium.CefGlue CefBrowser

[Missing <param name="browser"/> documentation for "M:Xilium.CefGlue.CefDownloadHandler.OnDownloadUpdated(Xilium.CefGlue.CefBrowser,Xilium.CefGlue.CefDownloadItem,Xilium.CefGlue.CefDownloadItemCallback)"]

downloadItem
Type: Xilium.CefGlue CefDownloadItem

[Missing <param name="downloadItem"/> documentation for "M:Xilium.CefGlue.CefDownloadHandler.OnDownloadUpdated(Xilium.CefGlue.CefBrowser,Xilium.CefGlue.CefDownloadItem,Xilium.CefGlue.CefDownloadItemCallback)"]

callback
Type: Xilium.CefGlue CefDownloadItemCallback

[Missing <param name="callback"/> documentation for "M:Xilium.CefGlue.CefDownloadHandler.OnDownloadUpdated(Xilium.CefGlue.CefBrowser,Xilium.CefGlue.CefDownloadItem,Xilium.CefGlue.CefDownloadItemCallback)"]

See Also