Soenneker.Html.Parser 4.0.1332

Prefix Reserved
dotnet add package Soenneker.Html.Parser --version 4.0.1332
                    
NuGet\Install-Package Soenneker.Html.Parser -Version 4.0.1332
                    
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="Soenneker.Html.Parser" Version="4.0.1332" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Html.Parser" Version="4.0.1332" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Html.Parser" />
                    
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 Soenneker.Html.Parser --version 4.0.1332
                    
#r "nuget: Soenneker.Html.Parser, 4.0.1332"
                    
#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 Soenneker.Html.Parser@4.0.1332
                    
#: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=Soenneker.Html.Parser&version=4.0.1332
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Html.Parser&version=4.0.1332
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

Soenneker.Html.Parser

Downloads and parses HTML with AngleSharp, with helpers for extracting anchors and image URLs.

Install

dotnet add package Soenneker.Html.Parser

Register

using Soenneker.Html.Parser.Registrars;

services.AddHtmlParserUtilAsSingleton();

Use AddHtmlParserUtilAsScoped() when the parser and its HTTP client should be owned by a dependency-injection scope.

Parse HTML

using AngleSharp.Dom;
using Soenneker.Html.Parser.Abstract;

IDocument document = await parser.Parse(html, cancellationToken);

string? title = document.QuerySelector("title")?.TextContent;
IElement? heading = document.QuerySelector("main h1");

AngleSharp parses with browser-style error recovery, so malformed markup may produce a repaired document rather than an exception.

List<string> anchors = await parser.GetAllAnchors(
    "https://example.com/docs",
    cancellationToken);

(List<string> pageAnchors, List<string> images) =
    await parser.GetAnchorsAndImageUrls(
        "https://example.com/docs",
        cancellationToken);

Anchor helpers return unique, non-empty href strings exactly as written in the document; relative links are not resolved. The combined helper downloads and parses the page once.

Extract image URLs from existing HTML

List<string> images = await parser.GetAllUrlsFromImgTagsFromHtml(
    html,
    "https://example.com/catalog/",
    cancellationToken);

This reads img[src], resolves relative values against the base URI, and returns unique HTTP(S) URLs. Data, JavaScript, file, and other schemes are ignored.

GetAllImageUrlsViaRegexFromHtml() is a separate text scan for absolute HTTP(S) image URLs ending in a common image extension. It does not understand HTML, resolve relative paths, inspect srcset, or retain query strings after the extension; prefer the DOM-based helper for normal pages.

The download APIs use HttpClient.GetStringAsync, require a successful response, and buffer the response body as a string. Do not expose arbitrary user-supplied URLs to these methods without applying your application's SSRF controls.

Product 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.

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.0.1332 35 9/6/2026
4.0.1331 41 9/5/2026
4.0.1330 39 9/5/2026
4.0.1329 116 9/4/2026
4.0.1328 45 9/4/2026
4.0.1327 43 9/4/2026
4.0.1324 42 9/4/2026
4.0.1323 46 9/4/2026
4.0.1322 44 9/4/2026
4.0.1321 49 9/4/2026
4.0.1313 83 8/30/2026
4.0.1312 85 8/30/2026
4.0.1311 97 8/30/2026
4.0.1310 83 8/30/2026
4.0.1308 80 8/30/2026
4.0.1307 95 8/30/2026
4.0.1305 85 8/29/2026
4.0.1304 85 8/29/2026
4.0.1303 90 8/29/2026
4.0.1302 90 8/26/2026
Loading failed

Update dependency Soenneker.AngleSharp.Parser to 4.0.69 (#1874)