2024
2023
2022
2021
2020
2019
2018
2017
2016
2015
Posted on August 23, 2022
DotNetBrowser 2.16.1
What’s new
We’ve added the possibility to create IEngine asynchronously:
public Form1()
{
InitializeComponent();
EngineFactory.CreateAsync(new EngineOptions.Builder()
{
RenderingMode = RenderingMode.HardwareAccelerated
}.Build()).ContinueWith(t =>
{
engine = t.Result;
browser = engine.CreateBrowser();
browserView.InitializeFrom(browser);
browser.Navigation.LoadUrl("google.com");
}, TaskScheduler.FromCurrentSynchronizationContext());
}
Quality enhancement
- Fixed the issue when IME caused unexpected application termination in Off-screen rendering mode.
Request evaluation license
Download DotNetBrowser 2.16.1 (.NET Framework)
Download DotNetBrowser 2.16.1 (.NET Core)
Follow @DotNetBrowser to get notified of the library updates.
Subscribe to our RSS feed to get instant updates on new releases.