Click or drag to resize

CefRequestHandlerOnCertificateError Method

Called on the UI thread to handle requests for URLs with an invalid SSL certificate. Return true and call CefRequestCallback::Continue() either in this method or at a later time to continue or cancel the request. Return false to cancel the request immediately. If CefSettings.ignore_certificate_errors is set all invalid certificates will be accepted without calling 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 bool OnCertificateError(
	CefBrowser browser,
	CefErrorCode certError,
	string requestUrl,
	CefSslInfo sslInfo,
	CefRequestCallback callback
)

Parameters

browser  CefBrowser
 
certError  CefErrorCode
 
requestUrl  String
 
sslInfo  CefSslInfo
 
callback  CefRequestCallback
 

Return Value

Boolean
See Also