Dns.EndGetHostEntry(IAsyncResult) Method

Definition

Ends an asynchronous request for DNS information.

public:
 static System::Net::IPHostEntry ^ EndGetHostEntry(IAsyncResult ^ asyncResult);
public static System.Net.IPHostEntry EndGetHostEntry (IAsyncResult asyncResult);
static member EndGetHostEntry : IAsyncResult -> System.Net.IPHostEntry
Public Shared Function EndGetHostEntry (asyncResult As IAsyncResult) As IPHostEntry

Parameters

asyncResult
IAsyncResult

An IAsyncResult instance returned by a call to an BeginGetHostEntry method.

Returns

An IPHostEntry instance that contains address information about the host.

Exceptions

asyncResult is null.

Remarks

This method blocks until the operation is complete.

The Aliases property of the IPHostEntry instance returned is not populated by this method and will always be empty.

To perform this operation synchronously, use a GetHostEntry method.

Note

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

Applies to