Soenneker.SendGrid.Validation
4.0.1702
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Soenneker.SendGrid.Validation --version 4.0.1702
NuGet\Install-Package Soenneker.SendGrid.Validation -Version 4.0.1702
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.Validation" Version="4.0.1702" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.SendGrid.Validation" Version="4.0.1702" />
<PackageReference Include="Soenneker.SendGrid.Validation" />
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.Validation --version 4.0.1702
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Soenneker.SendGrid.Validation, 4.0.1702"
#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.Validation@4.0.1702
#: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.Validation&version=4.0.1702
#tool nuget:?package=Soenneker.SendGrid.Validation&version=4.0.1702
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Soenneker.SendGrid.Validation
Returns SendGrid's detailed email-address validation result or a simplified fail-open verdict.
Installation
dotnet add package Soenneker.SendGrid.Validation
Configuration
{
"SendGrid": {
"ValidationApiKey": "SG.xxxxxxxxx",
"Validation": {
"Enabled": true,
"LogEnabled": false
}
}
}
Usage
using Soenneker.SendGrid.Validation.Abstract;
using Soenneker.SendGrid.Validation.Registrars;
services.AddSendGridValidationUtilAsSingleton();
public sealed class SignupValidator
{
private readonly ISendGridValidationUtil _validation;
public SignupValidator(ISendGridValidationUtil validation)
{
_validation = validation;
}
public ValueTask<bool> Accept(
string email,
CancellationToken cancellationToken)
{
return _validation.GetVerdict(
email,
source: "signup",
cancellationToken: cancellationToken);
}
}
Validate returns the full SendGrid response, or null when validation is disabled, the API fails after retries, or no result is returned. GetVerdict returns false only when SendGrid explicitly returns a verdict other than Valid; disabled or unavailable validation returns true. Requested cancellation is propagated rather than treated as a passing verdict.
| Product | Versions 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.
-
net10.0
- Soenneker.Extensions.HttpClient (>= 4.0.3991)
- Soenneker.SendGrid.Client.Validation (>= 4.0.2313)
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.1721 | 0 | 9/4/2026 |
| 4.0.1720 | 0 | 9/4/2026 |
| 4.0.1719 | 0 | 9/4/2026 |
| 4.0.1718 | 0 | 9/4/2026 |
| 4.0.1717 | 27 | 9/4/2026 |
| 4.0.1716 | 32 | 9/4/2026 |
| 4.0.1715 | 33 | 9/4/2026 |
| 4.0.1714 | 37 | 9/4/2026 |
| 4.0.1713 | 33 | 9/3/2026 |
| 4.0.1712 | 36 | 9/3/2026 |
| 4.0.1711 | 93 | 9/1/2026 |
| 4.0.1710 | 60 | 9/1/2026 |
| 4.0.1709 | 68 | 9/1/2026 |
| 4.0.1708 | 65 | 9/1/2026 |
| 4.0.1707 | 67 | 9/1/2026 |
| 4.0.1706 | 69 | 9/1/2026 |
| 4.0.1705 | 87 | 8/31/2026 |
| 4.0.1704 | 80 | 8/31/2026 |
| 4.0.1702 | 78 | 8/31/2026 |
| 4.0.1701 | 77 | 8/31/2026 |
Loading failed
Updated NuGet packages