Soenneker.Utils.Libphonenumber
4.0.224
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Utils.Libphonenumber --version 4.0.224
NuGet\Install-Package Soenneker.Utils.Libphonenumber -Version 4.0.224
<PackageReference Include="Soenneker.Utils.Libphonenumber" Version="4.0.224" />
<PackageVersion Include="Soenneker.Utils.Libphonenumber" Version="4.0.224" />
<PackageReference Include="Soenneker.Utils.Libphonenumber" />
paket add Soenneker.Utils.Libphonenumber --version 4.0.224
#r "nuget: Soenneker.Utils.Libphonenumber, 4.0.224"
#:package Soenneker.Utils.Libphonenumber@4.0.224
#addin nuget:?package=Soenneker.Utils.Libphonenumber&version=4.0.224
#tool nuget:?package=Soenneker.Utils.Libphonenumber&version=4.0.224
Soenneker.Utils.Libphonenumber
Lazily provides libphonenumber-csharp's PhoneNumberUtil for parsing, validating, and formatting international phone numbers.
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 | 60 | 8/31/2026 |
| 4.0.224 | 72 | 8/31/2026 |
| 4.0.223 | 47 | 8/31/2026 |
| 4.0.222 | 73 | 8/30/2026 |
| 4.0.221 | 60 | 8/30/2026 |
| 4.0.220 | 70 | 8/30/2026 |
| 4.0.219 | 56 | 8/30/2026 |
| 4.0.218 | 107 | 8/30/2026 |
| 4.0.217 | 90 | 8/29/2026 |
| 4.0.216 | 68 | 8/29/2026 |
| 4.0.215 | 74 | 8/29/2026 |
| 4.0.214 | 114 | 8/29/2026 |
| 4.0.213 | 159 | 8/26/2026 |
| 4.0.212 | 408 | 8/14/2026 |
| 4.0.211 | 174 | 8/11/2026 |
| 4.0.210 | 155 | 8/9/2026 |
| 4.0.209 | 155 | 8/8/2026 |
| 4.0.208 | 182 | 8/3/2026 |
| 4.0.207 | 191 | 7/29/2026 |
| 4.0.206 | 178 | 7/28/2026 |
Clarify phone number operations