2024
2023
2022
2021
2020
2019
2018
2017
2016
2015
Posted on June 17, 2022
DotNetBrowser 2.15.1
What’s new
Chromium
Chromium has been upgraded to version 102.0.5005.115 including 7 security fixes.
SSL certificate verification
We added user-friendly descriptions of the certificate verification errors to VerifyCertificateHandler
.
Engine.Profiles.Default.Network.VerifyCertificateHandler =
new Handler<VerifyCertificateParameters,
VerifyCertificateResponse>(p =>
{
foreach (CertificateVerificationError verificationError in p.VerifyErrors)
{
Console.WriteLine("CertificateVerificationStatus = " +
verificationError.VerifyStatus);
Console.WriteLine("Short description = " +
verificationError.ShortDescription);
Console.WriteLine("Detailed description = " +
verificationError.DetailedDescription);
}
return VerifyCertificateResponse.Valid();
});
Request evaluation license
Download DotNetBrowser 2.15.1 (.NET Framework)
Download DotNetBrowser 2.15.1 (.NET Core)
Follow @DotNetBrowser to get notified of the library updates.
Subscribe to our RSS feed to get instant updates on new releases.