Dns.GetHostEntry Method (IPAddress)
Resolves an IP address to an IPHostEntry instance.
Assembly: System (in System.dll)
Parameters
- address
- Type: System.Net.IPAddress
An IP address.
Return Value
Type: System.Net.IPHostEntryAn IPHostEntry instance that contains address information about the host specified in address.
| Exception | Condition |
|---|---|
| ArgumentNullException | address is null. |
| SocketException | An error is encountered when resolving address. |
| ArgumentException | address is an invalid IP address. |
The GetHostEntry method queries a DNS server for the IP addresses and aliases associated with an IP address.
Note: |
|---|
This member emits trace information when you enable network tracing in your application. For more information, see Network Tracing. |
The following code example uses the GetHostEntry method to resolve an IP address to an IPHostEntry instance.
public static void DoGetHostEntry(string hostname) { IPHostEntry host; host = Dns.GetHostEntry(hostname); Console.WriteLine("GetHostEntry({0}) returns:", hostname); foreach (IPAddress ip in host.AddressList) { Console.WriteLine(" {0}", ip); } }
// Determine the Internet Protocol(IP) addresses for my host.
static void DoGetLocalHostAddress()
{
IPAddress * myHost[] = Dns::GetLocalHostAddresses();
Console::Write("IPs for my host: ");
IEnumerator* ips = myHost->GetEnumerator();
while (ips->MoveNext())
{
Console::Write("{0} ", ips->Current);
}
Console::WriteLine("");
}
- DnsPermission
for accessing DNS information. Associated enumeration: PermissionState.Unrestricted
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: