List icon Contents

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();
    });

Download DotNetBrowser 2.15.1

Please share your email with us, and we'll send you download instructions.

Sending...
EmailBox Please check your inbox.

We were unable to send the email. Please try again.

If you are a registered customer you don't need to do anything to use this update.

If you would like to evaluate the product, you need an evaluation license.

Get free 30-day trial
Go Top