Android.Webkit.WebChromeClient.OnExceededDatabaseQuota Method
Tell the client that the quota has been exceeded for the Web SQL Database API for a particular origin and request a new quota.

Syntax

[Android.Runtime.Register("onExceededDatabaseQuota", "(Ljava/lang/String;Ljava/lang/String;JJJLandroid/webkit/WebStorage$QuotaUpdater;)V", "GetOnExceededDatabaseQuota_Ljava_lang_String_Ljava_lang_String_JJJLandroid_webkit_WebStorage_QuotaUpdater_Handler")]
[System.Obsolete("deprecated")]
public virtual void OnExceededDatabaseQuota (string url, string databaseIdentifier, long currentQuota, long estimatedSize, long totalUsedQuota, WebStorage.IQuotaUpdater quotaUpdater)

Parameters

url
The URL of the page that triggered the notification
databaseIdentifier
The identifier of the database where the quota was exceeded.
quota
The quota for the origin, in bytes
estimatedDatabaseSize
The estimated size of the offending database, in bytes
totalQuota
The total quota for all origins, in bytes
quotaUpdater
An instance of NoType:android/webkit/WebStorage$QuotaUpdater;Href=../../../reference/android/webkit/WebStorage.QuotaUpdater.html which must be used to inform the WebView of the new quota.

Remarks

Tell the client that the quota has been exceeded for the Web SQL Database API for a particular origin and request a new quota. The client must respond by invoking the NoType:android/webkit/WebStorage$QuotaUpdater;Href=../../../reference/android/webkit/WebStorage.QuotaUpdater.html#updateQuota(long) method of the supplied NoType:android/webkit/WebStorage$QuotaUpdater;Href=../../../reference/android/webkit/WebStorage.QuotaUpdater.html instance. The minimum value that can be set for the new quota is the current quota. The default implementation responds with the current quota, so the quota will not be increased.

[Android Documentation]

Requirements

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