Table of Contents
WebView.CertificateError Event

Occurs when the browser engines encounters a certificate error.

Syntax
 public event CertificateErrorHandler CertificateError;
Event Data

The event handler receives an argument of type CertificateErrorEventArgs containing data related to this event. The following CertificateErrorEventArgs properties provide information specific to this event.

Name Description
Certificate Gets the certificate information.
ErrorCode Gets the error code.
ResourceType Gets the resource type.
Url Gets the Url of the request.
Remarks

Handle this event and call CertificateErrorEventArgs.Continue to ignore certificate errors.

See Also