Soenneker.Validators.Yahoo.Exists 4.0.2690

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

Soenneker.Validators.Yahoo.Exists

Applies an undocumented Yahoo signup-response heuristic to a supplied address's local part.

Install

dotnet add package Soenneker.Validators.Yahoo.Exists

Registration

using Soenneker.Validators.Yahoo.Exists.Registrars;
using Microsoft.Extensions.DependencyInjection;

services.AddYahooExistsValidatorAsSingleton();

Scoped registration is also available. Both registrations reuse singleton HTTP-client-cache and rate-limiter-factory services. Disposing a scoped validator leaves the shared named HTTP client alive.

Configure request spacing

{
  "YahooExistsValidator": {
    "IntervalMs": 4000
  }
}

The default interval is 4,000 milliseconds. EmailExists executes through a shared named rate limiter using this spacing.

Check an identifier

using Soenneker.Validators.Yahoo.Exists.Abstract;

bool? result = await validator.EmailExists(
    "person@yahoo.com",
    cancellationToken);

The validator loads Yahoo's signup page, extracts session cookies and hidden state, then submits the text before the first @ as a proposed Yahoo user ID. It returns:

  • true when Yahoo reports IDENTIFIER_NOT_AVAILABLE or IDENTIFIER_EXISTS for userId;
  • false when the parsed response does not contain either marker;
  • null when the required signup cookies or session index cannot be extracted.

HTTP failures, non-success status codes, response-deserialization failures, and cancellation propagate. EmailExistsWithoutLimit skips only the local rate limiter; it does not bypass Yahoo's limits.

The method does not validate email syntax or require a Yahoo domain. person@gmail.com and person@yahoo.com both query the Yahoo identifier person, while input without @ is submitted in full. Validate and normalize input before calling if that distinction matters.

Reliability and privacy

This uses an undocumented signup endpoint and page structure. Yahoo can change the cookies, HTML, API response, or blocking behavior without notice, producing errors or incorrect results. It is not proof that a mailbox is reachable or owned by a user; send a verification message for ownership.

The queried local part is disclosed to Yahoo. Full addresses are no longer included in this validator's logs, but request content may still appear in upstream HTTP infrastructure or Yahoo's logs. Ensure the check is compatible with privacy requirements and provider terms.

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.2780 43 9/17/2026
4.0.2779 44 9/16/2026
4.0.2778 45 9/16/2026
4.0.2777 46 9/16/2026
4.0.2776 43 9/16/2026
4.0.2775 45 9/16/2026
4.0.2773 65 9/16/2026
4.0.2771 61 9/16/2026
4.0.2769 73 9/15/2026
4.0.2766 89 9/14/2026
4.0.2765 90 9/13/2026
4.0.2764 89 9/13/2026
4.0.2763 79 9/13/2026
4.0.2761 81 9/13/2026
4.0.2760 92 9/13/2026
4.0.2759 85 9/13/2026
4.0.2758 81 9/13/2026
4.0.2757 87 9/13/2026
4.0.2756 81 9/13/2026
4.0.2690 87 8/31/2026
Loading failed

Updated NuGet packages