cef_request_handler_t.get_auth_credentials

Called on the IO thread when the browser needs credentials from the user. |origin_url| is the origin making this authentication request. |isProxy| indicates whether the host is a proxy server. |host| contains the hostname and |port| contains the port number. |realm| is the realm of the challenge and may be NULL. |scheme| is the authentication scheme used, such as "basic" or "digest", and will be NULL if the source of the request is an FTP server. Return true (1) to continue the request and call

More...
struct cef_request_handler_t
extern (System)
int function(cef_request_handler_t* self, cef_browser_t* browser, const(cef_string_t)* origin_url, int isProxy, const(cef_string_t)* host, int port, const(cef_string_t)* realm, const(cef_string_t)* scheme, cef_auth_callback_t* callback) nothrow get_auth_credentials;

Detailed Description

cef auth callback t

:cont() either in this function or at a later time when the authentication information is available. Return false (0) to cancel the request immediately.

Meta