Soenneker.Cloudflare.HttpClient 4.0.401

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

Soenneker.Cloudflare.HttpClient

Provides cached, bearer-authenticated HttpClient instances for Cloudflare's v4 API.

Installation

dotnet add package Soenneker.Cloudflare.HttpClient

Configuration

{
  "Cloudflare": {
    "ApiKey": "your-api-token",
    "RequestResponseLogging": false
  }
}

Cloudflare:ApiKey is required. Enable request/response logging only when debug output is appropriate; the authorization header is redacted by the configured logging handler.

Registration and usage

using Soenneker.Cloudflare.HttpClient.Abstract;
using Soenneker.Cloudflare.HttpClient.Registrars;

services.AddCloudflareHttpClientAsSingleton();

public sealed class CloudflareZoneReader(ICloudflareHttpClient clientProvider)
{
    public async Task<string> GetZone(
        string zoneId,
        CancellationToken cancellationToken)
    {
        HttpClient client = await clientProvider.Get(cancellationToken);
        return await client.GetStringAsync($"zones/{zoneId}", cancellationToken);
    }
}

Get(string apiKey) creates or reuses a separate client for that token. Remove(apiKey) or RemoveSync(apiKey) removes and disposes that token's client immediately. Otherwise, every distinct token remains cached until the provider is disposed, so do not feed it an unbounded stream of short-lived credentials.

The provider owns all cache entries it creates. Disposing it removes and disposes those clients. Singleton registration is the normal application-wide lifetime; scoped registration creates isolated cache entries owned by each provider scope.

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.Cloudflare.HttpClient:

Package Downloads
Soenneker.Cloudflare.Utils.Client

An async thread-safe singleton for the Cloudflare OpenApiClient

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.406 0 9/1/2026
4.0.405 0 9/1/2026
4.0.404 0 9/1/2026
4.0.403 7 8/31/2026
4.0.402 33 8/31/2026
4.0.401 35 8/31/2026
4.0.399 40 8/31/2026
4.0.398 36 8/31/2026
4.0.397 47 8/30/2026
4.0.396 40 8/30/2026
4.0.394 349 8/30/2026
4.0.393 133 8/30/2026
4.0.392 145 8/30/2026
4.0.390 135 8/30/2026
4.0.389 38 8/30/2026
4.0.388 38 8/29/2026
4.0.387 251 8/29/2026
4.0.386 627 8/26/2026
4.0.385 357 8/26/2026
4.0.384 142 8/26/2026
Loading failed

Update dependency Soenneker.HttpClients.LoggingHandler to 4.0.214 (#914)