IPHostEntry.AddressList Property
.NET Framework 4
Gets or sets a list of IP addresses that are associated with a host.
Assembly: System (in System.dll)
The following example uses the AddressList property to access the IP addresses that are associated with the IPHostEntry.
public void GetIpAddressList(String hostString) { try { // Get 'IPHostEntry' object containing information like host name, IP addresses, aliases for a host. IPHostEntry hostInfo = Dns.GetHostByName(hostString); Console.WriteLine("Host name : " + hostInfo.HostName); Console.WriteLine("IP address List : "); for(int index=0; index < hostInfo.AddressList.Length; index++) { Console.WriteLine(hostInfo.AddressList[index]); } } catch(SocketException e) { Console.WriteLine("SocketException caught!!!"); Console.WriteLine("Source : " + e.Source); Console.WriteLine("Message : " + e.Message); } catch(ArgumentNullException e) { Console.WriteLine("ArgumentNullException caught!!!"); Console.WriteLine("Source : " + e.Source); Console.WriteLine("Message : " + e.Message); } catch(Exception e) { Console.WriteLine("Exception caught!!!"); Console.WriteLine("Source : " + e.Source); Console.WriteLine("Message : " + e.Message); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.