VOOZH about

URL: https://www.nuget.org/packages/DotNetBrowser.Chromium.Win-arm64/

⇱ NuGet Gallery | DotNetBrowser.Chromium.Win-arm64 4.1.1




👁 Image
DotNetBrowser.Chromium.Win-arm64 4.1.1

Prefix Reserved
dotnet add package DotNetBrowser.Chromium.Win-arm64 --version 4.1.1
 
 
NuGet\Install-Package DotNetBrowser.Chromium.Win-arm64 -Version 4.1.1
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DotNetBrowser.Chromium.Win-arm64" Version="4.1.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetBrowser.Chromium.Win-arm64" Version="4.1.1" />
 
Directory.Packages.props
<PackageReference Include="DotNetBrowser.Chromium.Win-arm64" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DotNetBrowser.Chromium.Win-arm64 --version 4.1.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DotNetBrowser.Chromium.Win-arm64, 4.1.1"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DotNetBrowser.Chromium.Win-arm64@4.1.1
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DotNetBrowser.Chromium.Win-arm64&version=4.1.1
 
Install as a Cake Addin
#tool nuget:?package=DotNetBrowser.Chromium.Win-arm64&version=4.1.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

DotNetBrowser

Integrate a Chromium-based browser into your .NET application to load and process modern web pages built with HTML5, CSS3, JavaScript etc.

To be able to use DotNetBrowser, you should obtain a license. A free 30-day evaluation license can be requested by filling a form at https://www.teamdev.com/dotnetbrowser#evaluate

Deep Chromium integration

DotNetBrowser provides API that can be used to interact with a huge set of various Chromium features directly from the code:

  • DOM API: you can access Document Object Model of the loaded web page, find elements and interact with them, handle and dispatch DOM events for the particular nodes.
  • JS-.NET bridge: you can execute JavaScript on the web page and process the results. You can also inject any .NET object into the web page and then use it in your JavaScript code.
  • Printing API: you can initiate and configure printing programmatically. Printing to PDF is also supported out of box.
  • Network API: you can intercept, redirect, handle, and suppress network requests, override HTTP headers and POST data, filter out incoming and outgoing cookies, change proxy settings on the fly.

See the examples to understand what can be implemented with DotNetBrowser.

Easy deployment

All required Chromium binaries are deployed as DotNetBrowser DLLs and can be extracted automatically during execution. You don't need to pre-install Chromium, Google Chrome, or a Chromium-based runtime to work with DotNetBrowser.

The current release of DotNetBrowser uses Chromium build 149.0.7827.103.

Headless mode

DotNetBrowser can be used in Windows services and server apps. The web page can be loaded and rendered completely in memory without displaying any visible windows. You can then take a screenshot of the loaded web page.

User input simulation

DotNetBrowser provides means to simulate mouse and keyboard input and interact with the web page programmatically - exactly as regular users do.

UI

DotNetBrowser provides UI controls for WPF and Windows Forms applications. These controls can be used to display web pages as integral parts of the .NET applications. It is also possible to use DotNetBrowser to create VSTO add-ins.

Usage

Note: The VB.NET examples can be found in the examples repository.

WPF

XAML

<Window x:Class="Sample.Wpf.MainWindow"
 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 xmlns:wpf="clr-namespace:DotNetBrowser.Wpf;assembly=DotNetBrowser.Wpf"
 mc:Ignorable="d"
 Title="MainWindow" Height="450" Width="800" Closed="MainWindow_OnClosed">
 <Grid>
 <wpf:BrowserView x:Name="browserView"/>
 </Grid>
</Window>

Code

using System;
using System.Windows;
using DotNetBrowser.Browser;
using DotNetBrowser.Engine;

namespace Sample.Wpf {
 public partial class MainWindow : Window {
 private readonly IEngine engine;
 private readonly IBrowser browser;
 
 public MainWindow() {
 InitializeComponent();
 
 // Create and initialize the IEngine
 engine = EngineFactory.Create();
 
 // Create the IBrowser
 browser = engine.CreateBrowser();
 browser.Navigation.LoadUrl("https://html5test.teamdev.com/");
 
 // Initialize the WPF BrowserView control
 browserView.InitializeFrom(browser);
 }
 
 private void MainWindow_OnClosed(object sender, EventArgs e) {
 browser.Dispose();
 engine.Dispose();
 }
 }
}

Windows Forms

using System;
using System.Windows.Forms;
using DotNetBrowser.Browser;
using DotNetBrowser.Engine;
using DotNetBrowser.WinForms;

namespace Sample.WinForms {
 public partial class Form1 : Form {
 private readonly IEngine engine;
 private readonly IBrowser browser;
 
 public Form1() {
 InitializeComponent();
 
 // Create and initialize the IEngine
 engine = EngineFactory.Create();
 
 // Create the Windows Forms BrowserView control
 BrowserView browserView = new BrowserView() {
 Dock = DockStyle.Fill
 };
 
 // Create the IBrowser
 browser = engine.CreateBrowser();
 browser.Navigation.LoadUrl("https://html5test.teamdev.com/");
 
 // Initialize the Windows Forms BrowserView control
 browserView.InitializeFrom(browser);
 
 // Add the BrowserView control to the Form
 Controls.Add(browserView);
 Closed += Form1Closed;
 }
 
 private void Form1Closed(object sender, EventArgs e) {
 browser.Dispose();
 engine.Dispose();
 }
 }
}

Avalonia UI

AXAML

<Window xmlns="https://github.com/avaloniaui"
 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 xmlns:app="clr-namespace:DotNetBrowser.AvaloniaUi;assembly=DotNetBrowser.AvaloniaUi"
 mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
 x:Class="Embedding.AvaloniaUi.MainWindow"
 Title="Embedding.AvaloniaUi" Closed="Window_Closed">
 <app:BrowserView x:Name="BrowserView"/>
</Window>

Code

using System;
using Avalonia.Controls;
using DotNetBrowser.Browser;
using DotNetBrowser.Engine;

namespace Embedding.AvaloniaUi
{

 /// <summary>
 /// This example demonstrates how to embed DotNetBrowser
 /// into an Avalonia application.
 /// </summary>
 public partial class MainWindow : Window
 {
 private const string Url = "https://html5test.teamdev.com/";
 private readonly IBrowser browser;
 private readonly IEngine engine;

 public MainWindow()
 {
 // Create and initialize the IEngine
 engine = EngineFactory.Create();

 // Create the IBrowser instance.
 browser = engine.CreateBrowser();

 InitializeComponent();

 // Initialize the Avalonia UI BrowserView control.
 BrowserView.InitializeFrom(browser);
 browser.Navigation.LoadUrl(Url);
 }

 private void Window_Closed(object? sender, EventArgs e)
 {
 browser?.Dispose();
 engine?.Dispose();
 }
 }
}
Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on DotNetBrowser.Chromium.Win-arm64:

Package Downloads
DotNetBrowser

A Chromium-based browser that can be used into your .NET application to load modern web pages built with HTML5, CSS3, JavaScript etc. You can obtain a free 30-day trial by filling a form at https://www.teamdev.com/dotnetbrowser#evaluate

DotNetBrowser.CrossPlatform

A Chromium-based browser that can be used into your .NET application to load modern web pages built with HTML5, CSS3, JavaScript etc. You can obtain a free 30-day trial by filling a form at https://www.teamdev.com/dotnetbrowser#evaluate

DotNetBrowser.Win-arm64

A Chromium-based browser that can be used into your .NET application to load modern web pages built with HTML5, CSS3, JavaScript etc. You can obtain a free 30-day trial by filling a form at https://www.teamdev.com/dotnetbrowser#evaluate

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.1.1 294 6/17/2026
4.1.0 1,188 5/28/2026
4.0.1 1,110 5/4/2026
4.0.0 738 4/28/2026
3.5.1 1,567 3/26/2026
3.5.0 2,912 2/18/2026
3.4.0 2,874 1/21/2026
3.3.7 2,687 12/18/2025
3.3.6 1,958 11/26/2025
3.3.5 6,506 11/7/2025
3.3.4 1,432 10/10/2025
3.3.3 4,289 9/17/2025
3.3.2 2,633 8/14/2025
3.3.1 1,848 7/16/2025
3.3.0 1,313 6/20/2025
3.2.1 2,694 5/26/2025
3.2.0 3,124 4/23/2025
3.1.2 10,418 3/26/2025
3.1.1 57,456 3/3/2025
3.1.0 6,465 2/17/2025
Loading failed

We've bumped Chromium to version 149.0.7827.103.

Find more about fixes and improvements in our release notes:
https://teamdev.com/dotnetbrowser/release-notes/2026/v4-1-1.html