cef_load_handler_t.on_load_error

Called when a navigation fails or is canceled. This function may be called by itself if before commit or in combination with OnLoadStart/OnLoadEnd if after commit. |errorCode| is the error code number, |errorText| is the error text and |failedUrl| is the URL that failed to load. See net\base\net_error_list.h for complete descriptions of the error codes.

struct cef_load_handler_t
extern (System)
void function(cef_load_handler_t* self, cef_browser_t* browser, cef_frame_t* frame, cef_errorcode_t errorCode, const(cef_string_t)* errorText, const(cef_string_t)* failedUrl) nothrow on_load_error;

Meta