Resolve a Host name : DNS « Network « C# / CSharp Tutorial






using System;
using System.Net;

class MainClass
{
   public static void Main(string[] argv)
   {
      IPHostEntry iphe = Dns.Resolve("62.208.12.1");

      Console.WriteLine("Host name: {0}", iphe.HostName);
      foreach(string alias in iphe.Aliases)
      {
         Console.WriteLine("Alias: {0}", alias);
      }
      foreach(IPAddress address in iphe.AddressList)
      {
         Console.WriteLine("Address: {0}",
                     address.ToString());
      }
   }
}
Host name: 62.208.12.1
Address: 62.208.12.1








33.2.DNS
33.2.1.DNS Name and Its IPHostEntry
33.2.2.Get DNS host name
33.2.3.Get IP address from host name
33.2.4.Get Host by IP address
33.2.5.Get IPAddress from IPHostEntry
33.2.6.Get IPHostEntry by host name
33.2.7.Resolve a Host name
33.2.8.Get Address List from HostEntry
33.2.9.Use AsyncCallback event to resolve a host name
33.2.10.Dns Lookup