FQDN

  • Thread starter Thread starter rahul
  • Start date Start date
R

rahul

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top