Soenneker.DNSimple.OpenApiClientUtil 4.0.592

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

Provides a lazily created, cached DNSimple OpenAPI client backed by Soenneker.DNSimple.Client.

Installation

dotnet add package Soenneker.DNSimple.OpenApiClientUtil

Configuration and registration

{
  "DNSimple": {
    "Token": "your-api-token",
    "Test": false
  }
}
using Soenneker.DNSimple.OpenApiClientUtil.Registrars;

services.AddDNSimpleOpenApiClientUtilAsScoped();

Usage

using Soenneker.DNSimple.OpenApiClientUtil.Abstract;

public sealed class DNSimpleIdentityReader(IDNSimpleOpenApiClientUtil clients)
{
    public async Task Read(CancellationToken cancellationToken)
    {
        var client = await clients.Get(cancellationToken);
        var identity = await client.Whoami.GetAsync(cancellationToken: cancellationToken);
    }
}

Use AddDNSimpleOpenApiClientUtilAsSingleton() when the application should share one generated client. Both registrations borrow the singleton HTTP provider, so disposing a scoped utility does not remove the shared HttpClient; the provider owns and disposes it at application shutdown.

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

Showing the top 5 NuGet packages that depend on Soenneker.DNSimple.OpenApiClientUtil:

Package Downloads
Soenneker.DNSimple.Registrar

Checks prices and availability, registers, transfers, renews, and cancels DNSimple domain transfers.

Soenneker.DNSimple.Delegation

Lists and changes DNSimple domain delegation and vanity name servers.

Soenneker.DNSimple.Domains

Lists, retrieves, creates, and deletes DNSimple domains.

Soenneker.DNSimple.Identity

Retrieves the account or user associated with a DNSimple API token.

Soenneker.DNSimple.Contacts

Creates, retrieves, updates, lists, and deletes DNSimple contacts.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.592 55 9/26/2026
4.0.591 88 9/26/2026
4.0.590 45 9/25/2026
4.0.589 34 9/25/2026
4.0.588 76 9/25/2026
4.0.587 70 9/24/2026
4.0.586 36 9/24/2026
4.0.585 198 9/23/2026
4.0.584 153 9/18/2026
4.0.583 256 9/17/2026
4.0.582 231 9/17/2026
4.0.581 173 9/17/2026
4.0.580 173 9/16/2026
4.0.579 181 9/16/2026
4.0.578 174 9/16/2026
4.0.577 194 9/16/2026
4.0.576 153 9/16/2026
4.0.575 192 9/15/2026
4.0.574 222 9/15/2026
4.0.573 734 9/13/2026
Loading failed

Updated Soenneker.DNSimple.Client to 4.0.598