List icon Contents

Posted on December 28, 2022

DotNetBrowser 2.20

What’s new

Chromium 108

We upgraded Chromium to version 108.0.5359.125 which includes 8 important security fixes.

Late binding support for VB.NET

We’ve improved the existing dynamic support to make it work better for VB.NET. It is now possible to get JavaScript object properties with late binding. For example:

' Get document.readyState value.
Dim document As Object
document = browser.MainFrame.Document
Dim readyState = document.readyState

System.Console.WriteLine($"Ready state: {readyState}")

' Get full reference from the <a> tag.
Dim link As Object
link = browser.MainFrame.Document.GetElementByTagName("a")
Dim reference = link.href

System.Console.WriteLine($"Reference: {reference}")

Quality enhancement

  • Fixed GPU crashes while taking screenshots in off-screen rendering mode.

Download DotNetBrowser 2.2

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