Click or drag to resize

CefRequestHandlerOnQuotaRequest Method

Called on the IO thread when JavaScript requests a specific storage quota size via the webkitStorageInfo.requestQuota function. |origin_url| is the origin of the page making the request. |new_size| is the requested quota size in bytes. Return true to continue the request and call CefRequestCallback::Continue() either in this method or at a later time to grant or deny the request. Return false to cancel the request immediately.

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
protected virtual bool OnQuotaRequest(
	CefBrowser browser,
	string originUrl,
	long newSize,
	CefRequestCallback callback
)

Parameters

browser  CefBrowser
 
originUrl  String
 
newSize  Int64
 
callback  CefRequestCallback
 

Return Value

Boolean
See Also