Soenneker.SendGrid.Validation
4.0.1700
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.SendGrid.Validation --version 4.0.1700
NuGet\Install-Package Soenneker.SendGrid.Validation -Version 4.0.1700
<PackageReference Include="Soenneker.SendGrid.Validation" Version="4.0.1700" />
<PackageVersion Include="Soenneker.SendGrid.Validation" Version="4.0.1700" />
<PackageReference Include="Soenneker.SendGrid.Validation" />
paket add Soenneker.SendGrid.Validation --version 4.0.1700
#r "nuget: Soenneker.SendGrid.Validation, 4.0.1700"
#:package Soenneker.SendGrid.Validation@4.0.1700
#addin nuget:?package=Soenneker.SendGrid.Validation&version=4.0.1700
#tool nuget:?package=Soenneker.SendGrid.Validation&version=4.0.1700
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. |
-
net10.0
- Soenneker.Extensions.HttpClient (>= 4.0.3990)
- Soenneker.SendGrid.Client.Validation (>= 4.0.2309)
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.1722 | 0 | 9/4/2026 |
| 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.1700 | 82 | 8/31/2026 |
Update dependency Soenneker.Extensions.HttpClient to 4.0.3990 (#2232)