cef_request_handler_t.on_certificate_error

Called on the UI thread to handle requests for URLs with an invalid SSL certificate. Return true (1) and call cef_callback_t functions either in this function or at a later time to continue or cancel the request. Return false (0) to cancel the request immediately. If cef_settings_t.ignore_certificate_errors is set all invalid certificates will be accepted without calling this function.

struct cef_request_handler_t
extern (System)
int function(cef_request_handler_t* self, cef_browser_t* browser, cef_errorcode_t cert_error, const(cef_string_t)* request_url, cef_sslinfo_t* ssl_info, cef_callback_t* callback) nothrow on_certificate_error;

Meta