9

我想创建这样的whois类

public class DomainInfo
{

     public string NameServer {get;set;}        
     public string CreationDate {get;set;}
     public string UpdatedDate {get;set;} 
     public string ExpirationDate {get;set;}
     public string Status {get;set;}        
     public string RegistrantName {get;set;}
     public string RegistrantOrganization {get;set;}
     public string Registrantemail {get;set;}        
     public static DomainInfo Parse(string inputData)
  {
     ......
  }
}

但是我有一些问题,因为不同的 DNS 服务器返回不同的答案,解析返回的答案是一项非常困难的任务。如何才能做到这一点?

4

2 回答 2

4

如果不为您遇到的每个 whois 数据库实现解析器,就无法做到这一点。

Whois 没有标准化格式,大多数注册机构甚至没有通过 whois 提供的所有信息,而是为您提供了一个句柄,您可以在填写验证码时通过 HTTP 检查:

$ whois google.no
% Kopibeskyttet, se http://www.norid.no/domenenavnbaser/whois/kopirett.html
% Rights restricted by copyright. See http://www.norid.no/domenenavnbaser/whois/kopirett.en.html

Domain Information

Domain Name................: google.no
Organization Handle........: GNA78O-NORID
Registrar Handle...........: REG466-NORID
Legal-c Handle.............: RH1355P-NORID
Tech-c Handle..............: JM722P-NORID
Zone-c Handle..............: JM722P-NORID
...
于 2010-03-09T23:36:42.767 回答
2

这是一篇博客文章的链接,其中包含一些可能有帮助的 C# 代码:

http://blog.flipbit.co.uk/2009/06/querying-whois-server-data-with-c.html

当您遇到没有获得所需数据的实例时,您可能可以调整解析代码,但我认为没有一种适合所有解决方案的解决方案。

于 2010-03-09T23:44:50.877 回答