public class IPHostEntry
Object
IPHostEntry
System
Networking
Provides a container class for Internet host address information.
The IPHostEntry class associates a Domain Name System (DNS) host name with an array of aliases and an array of matching IP addresses.
The following example queries the DNS database for information on the host "www.contoso.com" and displays the information in the returned IPHostEntry instance.
using System; using System.Net; public class IPHostEntryTest { public static void Main() { IPHostEntry hostInfo = Dns.GetHostByName("www.contoso.com"); string[] aliases = hostInfo.Aliases; IPAddress[] addresses = hostInfo.AddressList; Console.WriteLine("The host name is: {0}", hostInfo.HostName); for(int x = 0; x < aliases.Length; x++) Console.WriteLine("Alias {0} == {1}", aliases[x], addresses[x]); } }The output is
The host name is: contoso.com
Alias www.contoso.com == 207.46.230.186
System.Net Namespace
IPHostEntry Constructors
IPHostEntry Properties
IPHostEntry.AddressList Property
IPHostEntry.Aliases Property
IPHostEntry.HostName Property
public IPHostEntry();
Constructs a new instance of the IPHostEntry class.
System.Net.IPHostEntry Class, System.Net Namespace
public IPAddress[] AddressList { get; set; }
Gets or sets a list of IP addresses associated with a host.
A IPAddress array containing IP addresses that resolve to the host names contained in the System.Net.IPHostEntry.Aliases property.
System.Net.IPHostEntry Class, System.Net Namespace
public string[] Aliases { get; set; }
Gets or sets a list of aliases associated with a host.
A String array containing DNS names that resolve to the IP addresses in the System.Net.IPHostEntry.AddressList property.
System.Net.IPHostEntry Class, System.Net Namespace
public string HostName { get; set; }
Gets or sets the DNS name of the host.
A String containing the DNS host name that corresponds to the address and alias information contained in the current instance.
[Note: The System.Net.IPHostEntry.HostName property contains the primary host name for a server. If the DNS entry for the host defines additional aliases, they are available via the System.Net.IPHostEntry.Aliases property.]
System.Net.IPHostEntry Class, System.Net Namespace