Version: 5.5 and 5.6 for .NET 4.0 32bits and 64bits.
Hi,
I try to send a querymessage to a dns server, but i get 2 errors:
* the first is an exception timeout
* the second is that wireshark said the query is of type “unused” instead of type TXT
I already checked wireshark with a nslookup query.
This is the piece of code:
DnsClient dns = new DnsClient();
QueryMessage query = new QueryMessage(“bla._domainkey.domain.com.”, QueryType.TXT);
if (!dns.Resolve(query))
throw dns.LastException;
Is this a bug or my code is wrong ?