Hi, I'm receiving an error in CertificateError event in new version.
The error is -214, CERTIFICATE_TRANSPARENCY_REQUIRED from Chromium.
At first, you dont have it in your ErrorCode enum.
After googling, it seems is a chromium bug affecting version 53 and 54, and as far i know, 2017 version of webbrowser have Chromium v54.
For bug reference:
Thawte Alert about Certificate Transparency error with Chrome 53 and 54For now, I "pass" the error:
Code: C#
private void webView_CertificateError(object sender, CertificateErrorEventArgs e)
{
if (e.ErrorCode.ToString() == "-214")
{
e.Continue();
}
}