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::EndGetHostByName Method (IAsyncResult^)

 
Note: This API is now obsolete.

Ends an asynchronous request for DNS information.

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

public:
[ObsoleteAttribute("EndGetHostByName is obsoleted for this type, please use EndGetHostEntry instead. http://go.microsoft.com/fwlink/?linkid=14202")]
static IPHostEntry^ EndGetHostByName(
	IAsyncResult^ asyncResult
)

Parameters

asyncResult
Type: System::IAsyncResult^

An IAsyncResult instance that is returned by a call to the BeginGetHostByName method.

Return Value

Type: System.Net::IPHostEntry^

An IPHostEntry object that contains DNS information about a host.

Exception Condition
ArgumentNullException

asyncResult is null.

This method blocks until the operation is complete.

To perform this operation synchronously, use the GetHostByName method.

If the Ipv6Element::Enabled property is set to true, the Aliases property of the IPHostEntry instance returned is not populated by this method and will always be empty.

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 1.1
Return to top
Show:
© 2017 Microsoft