DotNetBrowser.Chromium.Win-x64.Net45
2.26.2
Prefix Reserved
See the version list below for details.
dotnet add package DotNetBrowser.Chromium.Win-x64.Net45 --version 2.26.2
NuGet\Install-Package DotNetBrowser.Chromium.Win-x64.Net45 -Version 2.26.2
<PackageReference Include="DotNetBrowser.Chromium.Win-x64.Net45" Version="2.26.2" />
paket add DotNetBrowser.Chromium.Win-x64.Net45 --version 2.26.2
#r "nuget: DotNetBrowser.Chromium.Win-x64.Net45, 2.26.2"
// Install DotNetBrowser.Chromium.Win-x64.Net45 as a Cake Addin #addin nuget:?package=DotNetBrowser.Chromium.Win-x64.Net45&version=2.26.2 // Install DotNetBrowser.Chromium.Win-x64.Net45 as a Cake Tool #tool nuget:?package=DotNetBrowser.Chromium.Win-x64.Net45&version=2.26.2
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 122.0.6261.94.
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 Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.5
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on DotNetBrowser.Chromium.Win-x64.Net45:
Package | Downloads |
---|---|
DotNetBrowser.x64
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 |
---|---|---|
2.27.5 | 2,186 | 10/2/2024 |
2.27.4 | 1,697 | 9/13/2024 |
2.27.3 | 3,166 | 8/5/2024 |
2.27.2 | 2,176 | 6/21/2024 |
2.27.1 | 8,974 | 5/30/2024 |
2.27.0 | 1,011 | 5/22/2024 |
2.26.2 | 5,907 | 4/24/2024 |
2.26.1 | 2,111 | 3/28/2024 |
2.26.0 | 3,452 | 2/27/2024 |
2.25.1 | 2,340 | 1/22/2024 |
2.25.0 | 2,176 | 12/27/2023 |
2.24.2 | 2,785 | 11/22/2023 |
2.24.1 | 2,031 | 10/20/2023 |
2.24.0 | 5,131 | 10/3/2023 |
2.23.3 | 2,418 | 9/6/2023 |
2.23.2 | 3,861 | 8/3/2023 |
2.23.1 | 3,527 | 6/22/2023 |
2.23.0 | 5,353 | 5/25/2023 |
2.22.1 | 2,205 | 4/27/2023 |
2.22.0 | 3,954 | 3/23/2023 |
2.21.0 | 6,477 | 2/27/2023 |
2.20.1 | 5,828 | 2/7/2023 |
2.20.0 | 2,629 | 12/28/2022 |
2.19.0 | 1,390 | 12/5/2022 |
2.18.0 | 9,463 | 10/21/2022 |
2.17.0 | 1,760 | 10/5/2022 |
2.16.1 | 7,380 | 8/23/2022 |
2.16.0 | 3,680 | 8/8/2022 |
We've bumped Chromium to version 123.0.6312.124.
Find more about fixes and improvements in our release notes:
https://teamdev.com/dotnetbrowser/release-notes/2024/v2-26-2.html