Soenneker.SendGrid.Client 4.0.2716

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

Provides a lazily initialized instance of the official SendGridClient for mail, contacts, lists, templates, suppressions, statistics, and account APIs.

Installation

dotnet add package Soenneker.SendGrid.Client

Configuration

{
  "SendGrid": {
    "ApiKey": "SG.xxxxxxxxx"
  }
}

Usage

using SendGrid;
using Soenneker.SendGrid.Client.Abstract;
using Soenneker.SendGrid.Client.Registrars;

services.AddSendGridClientUtilAsSingleton();

public sealed class SendGridScopeReader
{
    private readonly ISendGridClientUtil _sendGrid;

    public SendGridScopeReader(ISendGridClientUtil sendGrid)
    {
        _sendGrid = sendGrid;
    }

    public async Task<Response> GetScopes(CancellationToken cancellationToken)
    {
        SendGridClient client = await _sendGrid.Get(cancellationToken);
        return await client.RequestAsync(
            method: BaseClient.Method.GET,
            urlPath: "scopes",
            cancellationToken: cancellationToken);
    }
}

The configured key determines which SendGrid endpoints the returned client can access. Use AddSendGridClientUtilAsScoped() when each scope should lazily create its own official client instance.

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.SendGrid.Client:

Package Downloads
Soenneker.SendGrid.Contacts

Adds, retrieves, searches, and deletes SendGrid Marketing contacts.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.2720 76 9/1/2026
4.0.2719 77 9/1/2026
4.0.2718 92 8/31/2026
4.0.2717 74 8/31/2026
4.0.2716 89 8/31/2026
4.0.2715 129 8/31/2026
4.0.2714 81 8/31/2026
4.0.2713 72 8/31/2026
4.0.2712 70 8/31/2026
4.0.2711 95 8/31/2026
4.0.2710 83 8/30/2026
4.0.2709 135 8/30/2026
4.0.2708 91 8/30/2026
4.0.2707 83 8/30/2026
4.0.2706 82 8/30/2026
4.0.2705 86 8/30/2026
4.0.2704 76 8/29/2026
4.0.2703 141 8/29/2026
4.0.2702 123 8/26/2026
4.0.2701 100 8/26/2026
Loading failed

Update dependency Soenneker.Utils.HttpClientCache to 4.0.2049 (#3238)