Soenneker.Cloudflare.HttpClient 4.0.398

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.398
                    
NuGet\Install-Package Soenneker.Cloudflare.HttpClient -Version 4.0.398
                    
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.398" />
                    
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.398" />
                    
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.398
                    
#r "nuget: Soenneker.Cloudflare.HttpClient, 4.0.398"
                    
#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.398
                    
#: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.398
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Cloudflare.HttpClient&version=4.0.398
                    
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.402 0 8/31/2026
4.0.401 0 8/31/2026
4.0.399 36 8/31/2026
4.0.398 33 8/31/2026
4.0.397 44 8/30/2026
4.0.396 37 8/30/2026
4.0.394 238 8/30/2026
4.0.393 119 8/30/2026
4.0.392 137 8/30/2026
4.0.390 130 8/30/2026
4.0.389 38 8/30/2026
4.0.388 38 8/29/2026
4.0.387 240 8/29/2026
4.0.386 614 8/26/2026
4.0.385 354 8/26/2026
4.0.384 141 8/26/2026
4.0.383 265 8/25/2026
4.0.382 495 8/22/2026
4.0.381 91 8/22/2026
Loading failed

Add owned client removal