This is a WHOIS client library written in .Net Standard 2.0 specification.
There are some WHOIS libraries were written in dotnet, but none of them satisfied of mine use cases. Previously, I have worked with whois program written by Marco d'Itri under Unix-like systems. And I like it.
YaWhois
repeats logic done by whois
program, specifically:
- Smart whois server selection for each query object.
- Server response processing (parsing) leaved to the application developer.
var whois = new YaWhoisClient();
var response = whois.Query("github.com");
Console.WriteLine(response);
YaWhois
is using delegates to be easy in use.
var whois = new YaWhoisClient();
// set delegate when responses received
whois.WhenResponseParsed += Whois_ResponseParsed;
// make request
whois.Query("github.com");
static void Whois_ResponseParsed(object sender, YaWhoisClientEventArgs e)
{
Console.WriteLine($"[server: {e.Server}]");
Console.WriteLine($"[query: {e.Query}]");
Console.WriteLine(e.Response);
}
Same as above, but use QueryAsync
method instead.
var whois = new YaWhoisClient();
whois.WhenResponseParsed += Whois_ResponseParsed;
// QueryAsync() never throws exceptions, so handle exceptions in this way.
whois.WhenExceptionThrown += (o, e) =>
{
Console.WriteLine(e.Exception.Message);
};
// use cancellation token if neccessary
var cts = new CancellationTokenSource();
whois.QueryAsync("github.com", token: cts.Token);
// ...
All delegates (event handlers) have only two arguments:
object
sender (YaWhoisClient
)YaWhoisClientEventArgs
args
The YaWhoisClientEventArgs
contains all information about your query:
object
Value - user object per queryIDataParser
Parser - parser to get referral information, you can set to yoursstring
Server - selected server (readonly)string
Query - adopted query to the selected server (readonly)Encoding
Encoding - server encoding (readonly)string
Response - when query is completed, it contains server response (readonly)string
Referral - referral server if server response contains this information (readonly)Exception
Exception - used byQueryAsync()
; contains exception if smth goes wrong (readonly)
General usage for user objects is passing them to Query()
or QueryAsync()
:
// your object for the query below
var mydata = new MyData();
whois.Query("github.com", value: mydata);
// access your data in any delegate, for instance
static void Whois_Delegate(object sender, YaWhoisClientEventArgs e)
{
var data = (MyData)e.Value;
// ...
}
This delegate called before request to a server.
Currently, this delegate has little purposes.
You may change IDataParser
Parser at this moment.
This one called after network request and response has been received.
You may observe the string
Response value.
You still may change IDataParser
Parser at this moment.
This one called after parsing server response to find out
the value of Referral
.
This is last delegate to be called upon successful request.
Changing IDataParser
Parser value will not give any results.
This is used only by QueryAsync()
method.
When called the exception is set to Exception
Exception
property of the YaWhoisClientEventArgs
arguments.
YaWhoisClient
does recursive queries when its find referral from
the server response. If you wish disable this behaviour you may
set your dummy IDataParser
Parser.
An example to query IANA:
var whois = new YaWhoisClient();
// set delegate when responses received
whois.WhenResponseParsed += Whois_ResponseParsed;
// make request to IANA
whois.Query("github.com", "whois.iana.org");
// This delegate will be called for whois.iana.org response
// and a referral one (if it exists).
static void Whois_ResponseParsed(object sender, YaWhoisClientEventArgs e)
{
Console.WriteLine($"[server: {e.Server}]");
Console.WriteLine();
Console.WriteLine(e.Response);
}
An example how to disable recursive queries to all servers:
// Alternatively this could be done inside of WhenResponseReceived
whois.WhenRequestReady += (o, e) =>
{
e.Parser = null; // since 1.0.6 version
};
For the YaWhois
before 1.0.6 version use this approach:
class MyDummyParser : YaWhois.Clients.IDataParser
{
public string GetReferral(in string text)
{
return null;
}
}
whois.WhenRequestReady += (o, e) =>
{
e.Parser = new MyDummyParser();
};
Another way per a server (since 1.0.6 version):
var whois = new YaWhoisClient();
// This also could be done between queries and in delegates.
whois.RegisterParserByServer("whois.iana.org", null);
whois.RegisterParserByServer("whois.arin.net", null);
whois.Query("github.com", "whois.iana.org");
whois.Query("67.227.191.5"); // whois.arin.net
To remove the parser per server use the UnregisterParserByServer()
method:
whois.UnregisterParserByServer("whois.arin.net");
There are special exceptions which may be thrown by YaWhoisClient
:
NoServerException
- when unable to find a server for this kind of objectUnknownNetworkException
- probably invalid AS number or IP address has been passedExternalWhoisException
- the server infromation is accessed by external resource
The Query()
method throws exceptions.
The QueryAsync()
method does not throws exceptions, instead it calls
the WhenExceptionThrown
delegate (see above for details).
Currently there are only properties for TcpClient
:
ConnectTimeout
(default: 15) - connection timeout in secondsReadWriteTimeout
(default: 30) - timeout in seconds for read/write operations
You may adjust any of them at any time, but most useful cases are:
- After initializing
YaWhoisClient
object. - With in
WhenRequestReady
delegate depending on query or server values.
- RFC 3912 - WHOIS Protocol Specification
- github: rfc1036/whois - whois client written in C
- github: flipbit/whois - dotnet whois library
This software is released under BSD 2-clause "Simplified" License.