List icon Contents

Posted on October 21, 2022

DotNetBrowser 2.18

This release comes with Chromium 106 and navigation improvement.

What’s new

Chromium

We’ve upgraded Chromium to version 106.0.5249.119. It includes fixes from Chromium 105, Chromium 106, and the latest Stable channel update.

The LoadResult was replaced with NavigationResult to provide more details about the possible navigation failure. Before this change, the LoadUrl() method returned Task<LoadResult> that could only be used to determine whether the navigation has succeeded or failed.

An example:

NavigationResult result = await browser.Navigation.LoadUrl(example.com);
if (result.LoadResult == LoadResult.Failed)
{
    // The web page loading has failed. 
    // Check the error to get the cause of the failure.
    NetError error = result.Error;
}

Quality enhancements

  • Fixed possible memory leaks when creating and disposing of browsers.

Download DotNetBrowser 2.18

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