IRequestHandlerGetAuthCredentials Method |
Version 55.0.0
Called when the browser needs credentials from the user.
Namespace: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 55.0.0.0 (55.0.0.0)
Syntax bool GetAuthCredentials(
IWebBrowser browserControl,
IBrowser browser,
IFrame frame,
bool isProxy,
string host,
int port,
string realm,
string scheme,
IAuthCallback callback
)
bool GetAuthCredentials(
IWebBrowser^ browserControl,
IBrowser^ browser,
IFrame^ frame,
bool isProxy,
String^ host,
int port,
String^ realm,
String^ scheme,
IAuthCallback^ callback
)
Parameters
- browserControl
- Type: CefSharpIWebBrowser
The ChromiumWebBrowser control - browser
- Type: CefSharpIBrowser
the browser object - frame
- Type: CefSharpIFrame
The frame object that needs credentials (This will contain the URL that is being requested.) - isProxy
- Type: SystemBoolean
indicates whether the host is a proxy server - host
- Type: SystemString
hostname - port
- Type: SystemInt32
port number - realm
- Type: SystemString
realm - scheme
- Type: SystemString
scheme - callback
- Type: CefSharpIAuthCallback
Callback interface used for asynchronous continuation of authentication requests.
Return Value
Type:
BooleanReturn true to continue the request and call CefAuthCallback::Continue() when the authentication information is available. Return false to cancel the request.
See Also