Get IPAddress from IPHostEntry : DNS « Network « C# / CSharp Tutorial






using System;
using System.Net;

class MainClass
{
   public static void Main(string[] argv)
   {
      IPAddress test = IPAddress.Parse("64.200.123.1");

      IPHostEntry iphe = Dns.GetHostByAddress(test);

      foreach(IPAddress address in iphe.AddressList)
      {
         Console.WriteLine("Address: {0}", address.ToString());
      }
   }
}
Address: 64.200.123.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