Click here to Skip to main content
15,884,010 members
Articles / Programming Languages / C#
Article

Creating a global Whois class

Rate me:
Please Sign up or sign in to vote.
3.90/5 (9 votes)
6 Dec 20031 min read 71.5K   1.3K   34   9
Lookup a domain name for any tld (top level domain)

Introduction

I realise there is already a Whois example for C# on codeproject, in the form of an asp.net snippet. The class I've posted here encapsulates a little more functionality than that example, and is taken from a Perl script i wrote a few years back.

Details

The Whois class has one main method, Lookup(domain). From this, the class works out what whois server should be used for the domain lookup. This is done by a trick taken from the Perl script, the service is provided by whois-servers.net, hosted by CenterGate. From performing a dns lookup on the domain name's tld (e.g. .com for mydomain.com), attached to .whois-servers.net, you're provided with the address of the whois server for that domain, if one exists.

I've built into the class, the ability to provide your own whois server, via the WhoisServer property. I've also added checks for a few domain names which don't provide free whois servers, and the .tk domain which does, but isn't on the whois-servers.net service.

The class performs the lookup, and raises an event, LookupComplete when it's finished, passing a WhoisEventArgs class with it, which provides the results of the lookup, and the whois server that was used.

To check whether a domain is taken or not, is up to you - you'll have to parse the string provided in the WhoisInfo property of the WhoisEventArgs class.

The example project is a small windows forms application, to demonstrate how to use the class. The class doesn't cater for non-resolving whois servers at present, it could perhaps do with a few more lines of error trapping in this area.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United Kingdom United Kingdom
London based C# programmer.

I maintain my own pet C# site http://www.sloppycode.net in my spare time.

Comments and Discussions

 
QuestionHow to fix occational timeouts Pin
thorssig5-Oct-13 8:52
thorssig5-Oct-13 8:52 
Questionvery bad code | code kuy kuy Pin
Suchart_mart6-Feb-12 22:30
Suchart_mart6-Feb-12 22:30 
GeneralSocket Exception Unhandled - No such host known Pin
Sniper16718-Jul-07 18:36
Sniper16718-Jul-07 18:36 
GeneralRe: Socket Exception Unhandled - No such host known Pin
yetanotherchris23-Jul-07 0:10
yetanotherchris23-Jul-07 0:10 
GeneralWhois class implementation Pin
Syst3m Crash3r 48030-May-06 6:27
Syst3m Crash3r 48030-May-06 6:27 
GeneralRe: Whois class implementation Pin
yetanotherchris14-Nov-06 0:16
yetanotherchris14-Nov-06 0:16 
feel free to use it
QuestionC# IPHostEntry Cache??? Pin
gman4420-Aug-04 17:56
gman4420-Aug-04 17:56 
GeneralWhois Server Pin
youssef elmansouri8-Dec-03 23:25
youssef elmansouri8-Dec-03 23:25 
GeneralRe: Whois Server Pin
yetanotherchris9-Dec-03 7:18
yetanotherchris9-Dec-03 7:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.