Sudomimus.Connect 4.0.0

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

Sudomimus.Connect

.NET SDK for the Sudomimus Connect API. Connect owns the initial browser inquiry lifecycle:

  • EstablishAsync
  • StatusPollAsync
  • RedeemAsync
  • InfoAsync

Use Sudomimus.Session after RedeemAsync for RefreshAsync, IntrospectAsync, LogoutAsync, and RevokeAllAsync.

using Sudomimus.Connect;

var client = new ConnectClient(new ConnectClientOptions
{
    ClientAuth = new ConnectClientAuthWithKey
    {
        ApplicationAnchor = "anchor-xxx",
        PrivateKeyPem = File.ReadAllText("client-auth.pem"),
    },
});

var inquiry = await client.EstablishAsync(new EstablishRequest
{
    ApplicationAnchor = "anchor-xxx",
});

/establish requires a client-auth JWT with audience sudomimus-connect. Pass ConnectClientOptions.ClientAuth to let the SDK sign it, or provide a BYO signer through ConnectClientAuthWithSigner.

ConnectClient also exposes VerifyAccessTokenAsync and VerifyRefreshTokenAsync, which delegate to the Session JWKS-backed verifier. JWKS responses are cached per client instance and selected using the JWT kid. If you only need JWT verification, depend on Sudomimus.Token directly.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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.0 108 8/1/2026
3.3.0 111 7/18/2026
3.2.0 109 7/5/2026
3.1.0 119 7/1/2026
3.0.0 120 6/22/2026
1.4.0 121 6/16/2026
1.3.0 126 6/11/2026
1.2.0 110 6/3/2026
1.1.0 118 6/1/2026
1.0.0 116 5/28/2026