Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Dns::EndGetHostAddresses Method (IAsyncResult^)

 

Ends an asynchronous request for DNS information.

Namespace:   System.Net
Assembly:  System (in System.dll)

public:
static array<IPAddress^>^ EndGetHostAddresses(
	IAsyncResult^ asyncResult
)

Parameters

asyncResult
Type: System::IAsyncResult^

An IAsyncResult instance returned by a call to the BeginGetHostAddresses method.

Return Value

Type: array<System.Net::IPAddress^>^

An array of type IPAddress that holds the IP addresses for the host specified by the hostNameOrAddress parameter of BeginGetHostAddresses.

The BeginGetHostAddresses method queries a DNS server for the IP addresses associated with a host name. If hostNameOrAddress is an IP address, this address is returned without querying the DNS server.

When an empty string is passed as the host name, this method returns the IPv4 addresses of the local host for all operating systems except Windows Server 2003; for Windows Server 2003, both IPv4 and IPv6 addresses for the local host are returned.

System_CAPS_noteNote

This member emits trace information when you enable network tracing in your application. For more information, see Network Tracing in the .NET Framework.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft