ARSoft.Tools.Net icon indicating copy to clipboard operation
ARSoft.Tools.Net copied to clipboard

DnsClient.Default.ResolveAsync is returning null while DnsClient.Default.Resolve is returing results correctly

Open SainiAshish opened this issue 5 years ago • 0 comments

I am using to get the txt records but it is returning null. DnsMessage dnsMessage = await DnsClient.Default.Resolve(DomainName.Parse("google.com"), RecordType.Txt)

while non async version DnsMessage dnsMessage = DnsClient.Default.Resolve(DomainName.Parse("google.com"), RecordType.Txt) working fine.

SainiAshish avatar Jun 02 '19 16:06 SainiAshish