SimpleCrawler.HtmlAgilityPack
4.1.0
dotnet add package SimpleCrawler.HtmlAgilityPack --version 4.1.0
NuGet\Install-Package SimpleCrawler.HtmlAgilityPack -Version 4.1.0
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="SimpleCrawler.HtmlAgilityPack" Version="4.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SimpleCrawler.HtmlAgilityPack" Version="4.1.0" />
<PackageReference Include="SimpleCrawler.HtmlAgilityPack" />
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 SimpleCrawler.HtmlAgilityPack --version 4.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SimpleCrawler.HtmlAgilityPack, 4.1.0"
#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 SimpleCrawler.HtmlAgilityPack@4.1.0
#: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=SimpleCrawler.HtmlAgilityPack&version=4.1.0
#tool nuget:?package=SimpleCrawler.HtmlAgilityPack&version=4.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SimpleCrawler.HtmlAgilityPack
The default static-HTML backend for SimpleCrawler, using HtmlAgilityPack. It is the fastest backend and the right choice for server-rendered sites that don't need a JavaScript runtime.
Installation
dotnet add package SimpleCrawler.HtmlAgilityPack
Usage
using Microsoft.Extensions.DependencyInjection;
using SimpleCrawler.Core;
using SimpleCrawler.HtmlAgilityPack;
var services = new ServiceCollection()
.AddHtmlAgilityPackCrawler(new CrawlerOptions { MaxPages = 500 })
.BuildServiceProvider();
var crawler = services.GetRequiredService<ICrawler>();
var result = await crawler.Start("https://example.com");
See the documentation for configuration and backend details.
License
MIT — see LICENSE.txt.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- HtmlAgilityPack (>= 1.12.4)
- Microsoft.Extensions.Http (>= 10.0.0)
- SimpleCrawler.Core (>= 4.1.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.1.0 | 85 | 8/18/2026 |
| 4.0.0 | 107 | 7/31/2026 |
| 3.6.5 | 102 | 7/30/2026 |
| 3.6.4 | 108 | 7/29/2026 |
| 3.6.3 | 96 | 7/29/2026 |
| 3.6.2 | 97 | 7/29/2026 |
| 3.6.1 | 97 | 7/29/2026 |
| 3.6.0 | 97 | 7/28/2026 |
| 3.5.2 | 101 | 7/18/2026 |
| 3.5.1 | 108 | 7/18/2026 |
| 3.5.0 | 110 | 7/16/2026 |
| 3.4.0 | 106 | 7/16/2026 |
| 3.3.3 | 102 | 7/16/2026 |
| 3.3.1 | 100 | 7/15/2026 |
| 3.3.0 | 115 | 7/13/2026 |
| 3.2.0 | 103 | 7/11/2026 |
| 3.1.0 | 105 | 7/11/2026 |
| 3.0.0 | 103 | 7/9/2026 |
| 2.0.0 | 111 | 7/7/2026 |
| 1.0.0 | 114 | 7/7/2026 |
Loading failed