Fast concurrent checking of SOA DNS records for .co.za domains

前端 未结 2 1483
长情又很酷
长情又很酷 2021-01-23 01:15

I want to implement bulk availability checking of .co.za domain names as accurately as possible by checking for the existence of SOA

2条回答
  •  隐瞒了意图╮
    2021-01-23 01:57

    This would be very easy using JH Software's DNS Client Library for .NET:

    var Response = JHSoftware.DnsClient.Lookup("example.com", 
                                  JHSoftware.DnsClient.RecordType.SOA);
    

    It also supports BeginLookup / EndLookup methods for asynchronous lookups.

提交回复
热议问题