signal callback delegate or function to connect
bool callback(string failingUri, gio.tls_certificate.TlsCertificate certificate, gio.types.TlsCertificateFlags errors, webkit.web_view.WebView webView)
failingUri the URI that failed to load (optional)
certificate a #GTlsCertificate (optional)
errors a #GTlsCertificateFlags with the verification status of certificate (optional)
webView the instance the signal is connected to (optional)
Returns true to stop other handlers from being invoked for the event. false to propagate the event further.
Yes.After to execute callback after default handler, No.After to execute before (default)
Signal ID
Connect to LoadFailedWithTlsErrors signal.
Emitted when a TLS error occurs during a load operation. To allow an exception for this certificate and the host of failing_uri use webkit_web_context_allow_tls_certificate_for_host().
To handle this signal asynchronously you should call gobject.object.ObjectWrap.ref_ on certificate and return true.
If false is returned, #WebKitWebView::load-failed will be emitted. The load will finish regardless of the returned value.