Soenneker.Html.Client 4.0.1100

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Html.Client --version 4.0.1100
                    
NuGet\Install-Package Soenneker.Html.Client -Version 4.0.1100
                    
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.Client" Version="4.0.1100" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Html.Client" Version="4.0.1100" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Html.Client" />
                    
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.Client --version 4.0.1100
                    
#r "nuget: Soenneker.Html.Client, 4.0.1100"
                    
#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.Client@4.0.1100
                    
#: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.Client&version=4.0.1100
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Html.Client&version=4.0.1100
                    
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.Client

Provides a cached, dependency-injection-friendly HttpClient for retrieving HTML.

Install

dotnet add package Soenneker.Html.Client

Register

using Soenneker.Html.Client.Registrars;

services.AddHtmlClientAsSingleton();

Use AddHtmlClientAsScoped() when each dependency-injection scope must own an independent client. Its cache is scoped as well, so disposing one scope cannot remove another scope's client.

Usage

using Soenneker.Html.Client.Abstract;

public sealed class PageLoader(IHtmlClient htmlClient)
{
    public async Task<string> Load(Uri uri, CancellationToken cancellationToken)
    {
        HttpClient client = await htmlClient.Get(cancellationToken);

        return await client.GetStringAsync(uri, cancellationToken);
    }
}

Get() lazily creates the client and reuses it for the registered service lifetime. The client has no base address or site-specific headers, so pass an absolute URI and configure each request as needed.

Let the dependency-injection container dispose IHtmlClient. If you construct it yourself, dispose the wrapper rather than the returned HttpClient.

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 (1)

Showing the top 1 NuGet packages that depend on Soenneker.Html.Client:

Package Downloads
Soenneker.Html.Parser

A utility library for HTML parsing related operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.1110 55 9/17/2026
4.0.1109 40 9/16/2026
4.0.1108 51 9/16/2026
4.0.1107 48 9/16/2026
4.0.1106 45 9/16/2026
4.0.1105 67 9/16/2026
4.0.1104 90 9/15/2026
4.0.1102 115 9/13/2026
4.0.1101 114 9/13/2026
4.0.1100 110 9/13/2026
4.0.1099 97 9/13/2026
4.0.1098 109 9/12/2026
4.0.1097 94 9/12/2026
4.0.1096 161 9/9/2026
4.0.1095 115 9/8/2026
4.0.1094 111 9/8/2026
4.0.1093 107 9/7/2026
4.0.1092 102 9/7/2026
4.0.1091 147 9/5/2026
4.0.1090 128 9/4/2026
Loading failed

Update dependency Soenneker.Utils.HttpClientCache to 4.0.2077 (#1657)