List icon Contents

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.

Download DotNetBrowser 2.16.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