List icon Contents

Posted on February 27, 2023

DotNetBrowser 2.21

What’s new

Windows ARM

From now on, you can use DotNetBrowser on Windows devices with ARM64 architecture. See what packages to install from NuGet or ZIP.

Chromium

We upgraded Chromium to version 110.0.5481.77. This update includes 15 security fixes.

Starting with this version, Chromium requires minimum Windows 10 or Windows Server 2016. The same requirements are for DotNetBrowser.

Camera and microphone events

Chromium shows red dot on the tab which uses camera or microphone. We added the possibility to detect the usage of this devices programmatically:

Browser.MediaStreamCaptureStarted += (sender, args) =>
{
    Console.WriteLine($"Started capturing {args.MediaStreamType}"); 
};

Browser.MediaStreamCaptureStopped += (sender, args) =>
{
    Console.WriteLine($"Stopped capturing {args.MediaStreamType}");  
};

Quality enhancements

  • Fixed Chromium crash on browser creation and closing.

Download DotNetBrowser 2.21

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