getting NS record type using C# (dns)

c#, dns

Solution

As I recall, this functionality is not built in to C#.

However, there are some no-license and open-source-license components that will provide much richer DNS functionality.

Check this link for one. Others are easy to find with Google/Bing.

Problem

Just wondering if there is any way to get the NS records in C#. I have read on the MSDN and there seems to be a DNS class that can return the host IP address. However, I am after the NS record type. Many thanks

Original source