2025
2024
2023
2022
2021
2020
2019
2018
2017
2016
2015
Posted on February 7, 2023
DotNetBrowser 2.20.1
What’s new
Chromium
We’ve bumped Chromium to version 108.0.5359.215.
Clearing HTTP authentication cache
The API has been extended with functionality that allows you to clear HTTP authentication cache:
profile.HttpAuthCache.Clear();
Forwarding mouse modifiers
With these changes, it is possible to forward mouse modifiers along with the mouse input events to indicate which mouse buttons are in the pressed state during these events. For instance, we can simulate the mouse moved event with the left mouse button pressed:
MouseMovedEventArgs moveEvent = new MouseMovedEventArgs
{
Location = location,
MouseModifiers = new MouseModifiers
{
PrimaryButtonDown = true
};
};
browser.Mouse.Moved.Raise(moveEvent);
Quality enhancements
- Fixed issue when point inspection returned DOM node objects bound to an incorrect frame.
Download DotNetBrowser 2.20.1
Please share your email with us, and we'll send you download instructions.
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.
Follow @DotNetBrowser to get notified of the library updates.
Subscribe to our RSS feed to get instant updates on new releases.
Subscribe to get notifications about the latest releases.