2024
2023
2022
2021
2020
2019
2018
2017
2016
2015
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.
Navigation
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 (.NET Framework)
Download DotNetBrowser 2.18 (.NET Core)
Download DotNetBrowser 2.18 (Cross-platform)
Get free 30-day trial
Follow @DotNetBrowser to get notified of the library updates.
Subscribe to our RSS feed to get instant updates on new releases.