'Declaration
Public Event CertificateValidation As CertificateValidationEventHandler
'Usage
Dim instance As CertificateValidator Dim handler As CertificateValidationEventHandler AddHandler instance.CertificateValidation, handler
public event CertificateValidationEventHandler CertificateValidation
public: event CertificateValidationEventHandler^ CertificateValidation
Event Data
The event handler receives an argument of type CertificateValidationEventArgs containing data related to this event. The following CertificateValidationEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Accept | Whether the current error reported for a certificate should be accepted and suppressed. |
AcceptAll | Whether all the errors reported for a certificate should be accepted and suppressed. |
ApplicationErrorMsg | The custom error message from the application. |
Certificate | The certificate. |
Error | The error that occurred. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also