Android.Webkit.WebViewClient.OnPageStarted Method
Notify the host application that a page has started loading.

Syntax

[Android.Runtime.Register("onPageStarted", "(Landroid/webkit/WebView;Ljava/lang/String;Landroid/graphics/Bitmap;)V", "GetOnPageStarted_Landroid_webkit_WebView_Ljava_lang_String_Landroid_graphics_Bitmap_Handler")]
public virtual void OnPageStarted (WebView view, string url, Android.Graphics.Bitmap favicon)

Parameters

view
The WebView that is initiating the callback.
url
The url to be loaded.
favicon
The favicon for this page if it already exists in the database.

Remarks

Notify the host application that a page has started loading. This method is called once for each main frame load so a page with iframes or framesets will call onPageStarted one time for the main frame. This also means that onPageStarted will not be called when the contents of an embedded frame changes, i.e. clicking a link whose target is an iframe.

[Android Documentation]

Requirements

Namespace: Android.Webkit
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1