Most visited

Recently visited

Added in API level 1

SslErrorHandler

public class SslErrorHandler
extends Handler

java.lang.Object
   ↳ android.os.Handler
     ↳ android.webkit.SslErrorHandler


Represents a request for handling an SSL error. Instances of this class are created by the WebView and passed to onReceivedSslError(WebView, SslErrorHandler, SslError). The host application must call either proceed() or cancel() to set the WebView's response to the request.

Summary

Public methods

void cancel()

Cancel this request and all pending requests for the WebView that had the error.

void proceed()

Proceed with the SSL certificate.

Inherited methods

From class android.os.Handler
From class java.lang.Object

Public methods

cancel

Added in API level 1
void cancel ()

Cancel this request and all pending requests for the WebView that had the error.

proceed

Added in API level 1
void proceed ()

Proceed with the SSL certificate.

Hooray!