I have a domain alias "ILDEV". I want to convert this to its corresponding
Fully Qualified Domain Name. Is there any C# API to do the same ? Or a
PInvoke in any system dll like Advapi32.
Hello, rahul!
You can try to query for it.
IPHostEntry he = Dns.GetHostEntry("ILDEV");
string fqdn= he.HostName;
You wrote on Thu, 16 Aug 2007 14:31:41 +0530:
r> I have a domain alias "ILDEV". I want to convert this to its
r> corresponding
r> Fully Qualified Domain Name. Is there any C# API to do the same ? Or
r> a
r> PInvoke in any system dll like Advapi32.
With best regards, Vadym Stetsiak.
Blog: http://vadmyst.blogspot.com