Soenneker.Utils.Libphonenumber
4.0.223
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Utils.Libphonenumber --version 4.0.223
NuGet\Install-Package Soenneker.Utils.Libphonenumber -Version 4.0.223
<PackageReference Include="Soenneker.Utils.Libphonenumber" Version="4.0.223" />
<PackageVersion Include="Soenneker.Utils.Libphonenumber" Version="4.0.223" />
<PackageReference Include="Soenneker.Utils.Libphonenumber" />
paket add Soenneker.Utils.Libphonenumber --version 4.0.223
#r "nuget: Soenneker.Utils.Libphonenumber, 4.0.223"
#:package Soenneker.Utils.Libphonenumber@4.0.223
#addin nuget:?package=Soenneker.Utils.Libphonenumber&version=4.0.223
#tool nuget:?package=Soenneker.Utils.Libphonenumber&version=4.0.223
Soenneker.Utils.Libphonenumber
An async thread-safe singleton for a libphonenumber-csharp instance.
Installation
dotnet add package Soenneker.Utils.Libphonenumber
Quick start
using Soenneker.Utils.Libphonenumber.Registrars;
services.AddLibphonenumberUtilAsSingleton();
Then inject ILibphonenumberUtil wherever you need it.
Parse, validate, and format
using PhoneNumbers;
PhoneNumberUtil phoneNumbers = await libphonenumberUtil.Get(cancellationToken);
try
{
PhoneNumber number = phoneNumbers.Parse("(212) 555-0100", "US");
if (phoneNumbers.IsValidNumber(number))
{
string e164 = phoneNumbers.Format(number, PhoneNumberFormat.E164);
// +12125550100
}
}
catch (NumberParseException)
{
// The input could not be interpreted as a phone number.
}
Pass an ISO 3166-1 alpha-2 region such as "US" when parsing a national number. For an input
already beginning with + and a country calling code, the region can be null. Parsing only
interprets the text; call IsPossibleNumber or IsValidNumber when validity matters.
Get lazily returns the shared PhoneNumberUtil supplied by libphonenumber-csharp. Cache the
returned reference within an operation if you need it repeatedly. The cancellation token applies
while obtaining the lazy value; it does not affect later synchronous parsing or formatting calls.
The scoped registrar is available when the wrapper must follow a scope, but the underlying
libphonenumber instance remains shared. Let dependency injection dispose the wrapper; callers do
not own the returned PhoneNumberUtil.
| 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
- libphonenumber-csharp (>= 9.0.38)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.11)
- Soenneker.Utils.AsyncSingleton (>= 4.0.829)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Soenneker.Utils.Libphonenumber:
| Package | Downloads |
|---|---|
|
Soenneker.Validators.Phone.Possible
A validation module checking if a given phone number is possible |
|
|
Soenneker.Utils.Test.PhoneNumber
Generates a random valid 10-digit phone number |
|
|
Soenneker.Phone.Util
Parses, validates, and formats phone numbers as E.164 |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.225 | 86 | 8/31/2026 |
| 4.0.224 | 89 | 8/31/2026 |
| 4.0.223 | 55 | 8/31/2026 |
| 4.0.222 | 88 | 8/30/2026 |
| 4.0.221 | 76 | 8/30/2026 |
| 4.0.220 | 82 | 8/30/2026 |
| 4.0.219 | 67 | 8/30/2026 |
| 4.0.218 | 121 | 8/30/2026 |
| 4.0.217 | 106 | 8/29/2026 |
| 4.0.216 | 75 | 8/29/2026 |
| 4.0.215 | 94 | 8/29/2026 |
| 4.0.214 | 129 | 8/29/2026 |
| 4.0.213 | 163 | 8/26/2026 |
| 4.0.212 | 409 | 8/14/2026 |
| 4.0.211 | 174 | 8/11/2026 |
| 4.0.210 | 156 | 8/9/2026 |
| 4.0.209 | 156 | 8/8/2026 |
| 4.0.208 | 183 | 8/3/2026 |
| 4.0.207 | 191 | 7/29/2026 |
| 4.0.206 | 179 | 7/28/2026 |
Update dependency Soenneker.Utils.AsyncSingleton to 4.0.829 (#772)