WhoisClient.NET 6.0.0

dotnet add package WhoisClient.NET --version 6.0.0
                    
NuGet\Install-Package WhoisClient.NET -Version 6.0.0
                    
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="WhoisClient.NET" Version="6.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WhoisClient.NET" Version="6.0.0" />
                    
Directory.Packages.props
<PackageReference Include="WhoisClient.NET" />
                    
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 WhoisClient.NET --version 6.0.0
                    
#r "nuget: WhoisClient.NET, 6.0.0"
                    
#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.
#addin nuget:?package=WhoisClient.NET&version=6.0.0
                    
Install WhoisClient.NET as a Cake Addin
#tool nuget:?package=WhoisClient.NET&version=6.0.0
                    
Install WhoisClient.NET as a Cake Tool

WhoisClient.NET NuGet Package unit tests

Project Description

This is a .NET Class library implementing a WHOIS client.

How to install

To install this library into your application, use the NuGet repository.

dotnet add package WhoisClient.NET

Sample source code (C#)

Async version

using Whois.NET;
...
private async Task QueryByIPAddress()
{
  var result = await WhoisClient.QueryAsync("8.8.8.8", options: default);
  
  Console.WriteLine("{0} - {1}", result.AddressRange.Begin, result.AddressRange.End); // "8.8.8.0 - 8.8.8.255"
  Console.WriteLine("{0}", result.OrganizationName); // "Google Inc. LVLT-GOGL-8-8-8 (NET-8-8-8-0-1)"
  Console.WriteLine(string.Join(" > ", result.RespondedServers)); // "whois.iana.org > whois.arin.net" 
}

private async Task QueryByDomain()
{
  var result = await WhoisClient.QueryAsync("google.com", options: default);
  
  Console.WriteLine("{0}", result.OrganizationName); // "Google Inc."
  Console.WriteLine(string.Join(" > ", result.RespondedServers)); // "whois.iana.org > whois.verisign-grs.com > whois.markmonitor.com" 
}

Sync version

using Whois.NET;
...
private void QueryByIPAddress()
{
  var result = WhoisClient.Query("8.8.8.8", options: default);
  
  Console.WriteLine("{0} - {1}", result.AddressRange.Begin, result.AddressRange.End); // "8.8.8.0 - 8.8.8.255"
  Console.WriteLine("{0}", result.OrganizationName); // "Google Inc. LVLT-GOGL-8-8-8 (NET-8-8-8-0-1)"
  Console.WriteLine(string.Join(" > ", result.RespondedServers)); // "whois.iana.org > whois.arin.net" 
}

private async void QueryByDomain()
{
  var result = WhoisClient.Query("google.com", options: default);
  
  Console.WriteLine("{0}", result.OrganizationName); // "Google Inc."
  Console.WriteLine(string.Join(" > ", result.RespondedServers)); // "whois.iana.org > whois.verisign-grs.com > whois.markmonitor.com" 
}

Supported Framework

WhoisClient.NET version Supported Framework
5.x .NET 5, 6, 7, 8, 9 or later, .NET Standard 2.0 (including .NET Core 2.0 or later, .NET Framework 4.6.2 or later)
4.x .NET 5, 6, 7, 8, 9 or later, .NET Standard 2.0 (including .NET Core 2.0 or later, .NET Framework 4.6.2 or later)
3.x .NET Standard 1.4 (including .NET Core 1.1 or later, .NET Framework 4.5 or later)
2.x .NET Framework 4.0 or later
1.x .NET Framework 4.0 or later

NOTICE

  • WhoisClient.NET v.4.x doesn't no longer support .NET Framework 4.5.x or earlier.
  • WhoisClient.NET v.3.x doesn't no longer support .NET Framework 4.0.
  • WhoisClient.NET v.1.x and v.2.x don't support .NET Core.

Async version for .NET Framework 4.0

WhoisClient.NET ver.2.x support "async" version methods for also .NET Framework 4.0 powered by Microsoft.Bcl.Async NuGet package.

But if you don't want to get dependencies for Microsoft.Bcl.Async and have no need "async" version method, you can stay using v.1.x by like the following install command.

PM> Install-Package WhoisClient.NET -Version 1.1.1

Release notes

The release notes are here.

License

Microsoft Public License

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on WhoisClient.NET:

Package Downloads
Yanga.Module.Api.Utilities

Api utilities , connect to external API

WhoisApp

WhoIs App is application to retrieve public data about domains, owners. Project contains library which is able to retrieve WHOIS data.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.0 351 3/12/2025
5.1.0 814 2/21/2025
5.0.0 37,948 6/3/2023
4.0.0 24,326 8/23/2022
3.0.1 99,587 7/20/2018
3.0.0 24,150 7/4/2017
3.0.0-beta 1,270 5/21/2017
2.0.1 12,757 10/21/2016
2.0.0 1,482 10/20/2016
1.1.1 1,584 10/20/2016
1.1.0 2,233 2/4/2016
1.0.2 7,153 3/27/2014
1.0.1 2,561 10/9/2012
1.0.0 1,977 5/23/2012

v.6.0.0
- [BREAKING CHANGE] The Default timeout for communication with servers was changed to 2 seconds, and the default retry count was changed to 3 times (Issue #10 by Makaopior)
- Improved resolving an organization name from a raw response text from a WHOIS server
- Improved that TcpClient creation is moved to a separate function, enabling usage in special cases like flowing traffic through a SOCKS proxy (PR #9 by Makaopior)
- Fixed potential infinite loop in socket reading method (Issue #11, PR #9 by Makaopior)
- Fixed potential response string corruption for registries which use multi-byte encoding (Issue #12, PR #13 by Makaopior)
- Fixed IPv6 address parsing in APNIC response (PR #14 by Makaopior)


To see all the change logs, please visit the following URL.
- https://github.com/jsakamoto/WhoisClient.NET/blob/master/RELEASE-NOTES.txt