Soenneker.X.ClientUtil 4.0.433

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

Provides a lazily created, cached XOpenApiClient that authenticates every request with one configured bearer token.

Installation

dotnet add package Soenneker.X.ClientUtil

Configuration

{
  "X": {
    "BearerToken": "your-app-bearer-token"
  }
}

X:ApiKey remains supported as a legacy configuration key.

Registration

Register one client for the application:

services.AddXClientUtilAsSingleton();

Or register the OpenAPI client provider per scope while retaining the singleton HTTP transport:

services.AddXClientUtilAsScoped();

Usage

public sealed class XSearchService
{
    private readonly IXClientUtil _xClientUtil;

    public XSearchService(IXClientUtil xClientUtil)
    {
        _xClientUtil = xClientUtil;
    }

    public async Task SearchUsers(CancellationToken cancellationToken)
    {
        XOpenApiClient client = await _xClientUtil.Get(cancellationToken);

        var response = await client.Two.Users.Search.GetAsync(request =>
        {
            request.QueryParameters.Query = "dotnet";
        }, cancellationToken);

        foreach (var user in response?.Data ?? [])
            Console.WriteLine($"{user.Name} (@{user.Username})");
    }
}

This package captures one bearer token when the provider is created, so it fits app-only access and other endpoints that accept that token. For requests made on behalf of different users, use Soenneker.X.Client and attach the appropriate OAuth token to each request instead of sharing it through this client.

Disposing a scoped IXClientUtil releases its generated client; it does not remove the singleton HTTP transport.

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.453 0 9/13/2026
4.0.452 29 9/13/2026
4.0.451 38 9/12/2026
4.0.447 48 9/11/2026
4.0.446 52 9/10/2026
4.0.445 44 9/9/2026
4.0.444 51 9/9/2026
4.0.443 40 9/8/2026
4.0.442 49 9/8/2026
4.0.441 49 9/8/2026
4.0.440 51 9/8/2026
4.0.439 53 9/8/2026
4.0.438 58 9/8/2026
4.0.437 67 9/8/2026
4.0.436 88 9/7/2026
4.0.435 94 9/7/2026
4.0.434 106 9/7/2026
4.0.433 96 9/6/2026
4.0.432 97 9/6/2026
4.0.431 93 9/5/2026
Loading failed

Update dependency Soenneker.X.OpenApiClient to 4.0.219 (#745)