List icon 目录

发布日期 2025年06月20日

DotNetBrowser 3.3.0

Chromium 137.0.7151.69

We upgraded Chromium to a newer version, which introduces major security fixes including the fix for a vulnerability that have known exploits:

You can read more about it in the Chromium blog posts:

Download files in one call

Starting with DotNetBrowser 3.3.0, you can download any file without navigating to it:

browser.DownloadResource("https://example.com/avatar.png");

The browser will send a request with appropriate cookies saved for a domain. If the URL is valid and the server responds with a downloadable resource, the browser will start downloading.

To control the downloading process, use the StartDownloadHandler as we describe in the Downloads guide.

Widevine API

We’ve added a new Widevine API that gives you fine-grained control over enabling Widevine support in DotNetBrowser. To enable it and play the DRM-encoded content, use the code sample below:

var status = await engine.Widevine.Activate();
Dim status = engine.Widevine.Activate().Result

The status will indicate whether the Widevine component was activated successfully.

More details are available in the Media guide.

Widevine is a Google proprietary component, governed by its own terms of use. For more information, refer to Widevine.

Absolute bounds of elements

Up to this version, you could only get the bounds of an HTML element relative to its frame. In this version, we have added the BoundingClientRectInViewport property that returns global bounds an element, relative to the viewport:

var localBounds = element.BoundingClientRect;
var globalBounds = element.BoundingClientRectInViewport;

Quality enhancements

  • Thumbnails are now provided properly in StartSessionHandler parameters for WebRTC screen sharing.

下载 DotNetBrowser 3.3.0

请提供您的电子邮箱地址,我们会尽快将下载说明发送给您。

发送...
EmailBox 请检查您的收件箱。

我们无法发送电子邮件。请重试

如果您已经是我们的注册客户,您无需任何操作,即可轻松享受此次更新。

如果您希望深入了解并体验我们的产品,您可以申请评估许可证。

获取免费 30 天体验
Go Top