Dns.GetHostEntry Method (String)
Assembly: System (in system.dll)
The GetHostEntry method queries a DNS server for the IP address that is associated with a host name or IP address.
When an empty string is passed as the host name, this method returns the IPv4 addresses of the local host.
Note |
|---|
| This member emits trace information when you enable network tracing in your application. For more information, see Network Tracing. |
- DnsPermission for accessing DNS information. Associated enumeration: PermissionState.Unrestricted
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Here is a code and output example illustrating this:
foreach (var ip in Dns.GetHostEntry("").AddressList)
{
Console.WriteLine(ip);
}
fe80::acb8:6d46:193b:94c6%13
2001:4898:2a:3:acb8:6d46:193b:94c6
fe80::5efe:172.30.180.166%14
2001:4898:0:fff:0:5efe:172.30.180.166
172.30.180.166
So, it's clear that this returns not only IPv4, but IPv6 addresses as well.
- 11/29/2011
- James Osborne-MSFT
Public Shared Sub DoGetHostEntry(ByVal hostname As String) Dim host As IPHostEntry host = Dns.GetHostEntry(hostname) Console.WriteLine("GetHostEntry({0}) returns:", hostname) For Each ip As IPAddress In host.AddressList Console.WriteLine(" {0}", ip) Next ip End Sub
- 8/5/2011
- chj124
If you want to have this method wrapped, with timeout and default on DNS exceptions, check this out.
- 9/9/2008
- F. Chapleau
Note