Soenneker.Cloudflare.HttpClient 4.0.403

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.403
                    
NuGet\Install-Package Soenneker.Cloudflare.HttpClient -Version 4.0.403
                    
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.403" />
                    
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.403" />
                    
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.403
                    
#r "nuget: Soenneker.Cloudflare.HttpClient, 4.0.403"
                    
#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.403
                    
#: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.403
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Cloudflare.HttpClient&version=4.0.403
                    
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 40 9/1/2026
4.0.405 39 9/1/2026
4.0.404 35 9/1/2026
4.0.403 45 8/31/2026
4.0.402 50 8/31/2026
4.0.401 46 8/31/2026
4.0.399 47 8/31/2026
4.0.398 43 8/31/2026
4.0.397 56 8/30/2026
4.0.396 47 8/30/2026
4.0.394 539 8/30/2026
4.0.393 161 8/30/2026
4.0.392 169 8/30/2026
4.0.390 163 8/30/2026
4.0.389 45 8/30/2026
4.0.388 44 8/29/2026
4.0.387 295 8/29/2026
4.0.386 661 8/26/2026
4.0.385 378 8/26/2026
4.0.384 149 8/26/2026
Loading failed

Updated NuGet packages