WebViewClient.OnReceivedLoginRequest(WebView, String, String, String) Method

Definition

Notify the host application that a request to automatically log in the user has been processed.

[Android.Runtime.Register("onReceivedLoginRequest", "(Landroid/webkit/WebView;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetOnReceivedLoginRequest_Landroid_webkit_WebView_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler")]
public virtual void OnReceivedLoginRequest (Android.Webkit.WebView? view, string? realm, string? account, string? args);
[<Android.Runtime.Register("onReceivedLoginRequest", "(Landroid/webkit/WebView;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetOnReceivedLoginRequest_Landroid_webkit_WebView_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler")>]
abstract member OnReceivedLoginRequest : Android.Webkit.WebView * string * string * string -> unit
override this.OnReceivedLoginRequest : Android.Webkit.WebView * string * string * string -> unit

Parameters

view
WebView

The WebView requesting the login.

realm
String

The account realm used to look up accounts.

account
String

An optional account. If not null, the account should be checked against accounts on the device. If it is a valid account, it should be used to log in the user.

args
String

Authenticator specific arguments used to log in the user.

Attributes

Remarks

Notify the host application that a request to automatically log in the user has been processed.

Java documentation for android.webkit.WebViewClient.onReceivedLoginRequest(android.webkit.WebView, java.lang.String, java.lang.String, java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to