Click or drag to resize

CefDownloadHandlerOnDownloadUpdated Method

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: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
protected virtual void OnDownloadUpdated(
	CefBrowser browser,
	CefDownloadItem downloadItem,
	CefDownloadItemCallback callback
)

Parameters

browser  CefBrowser
 
downloadItem  CefDownloadItem
 
callback  CefDownloadItemCallback
 
See Also