Table of Contents
WebView.NeedClientCertificate Event

Raised when the server requires a client certificate.

Syntax
 public event GetClientCertificateHandler NeedClientCertificate;
Event Data

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

Name Description
Host Gets the host that requested the client certificate.
Port Gets the SSL port used.
TrustedAuthorities List of DER-encoded X.509 DistinguishedName of certificate authorities allowed by the server.
Remarks

Call Continue or ContinueWithoutCertificate to continue the request either with or without a certificate.

See Also