Dns::EndResolve Method (IAsyncResult^)
.NET Framework (current version)
Note: This API is now obsolete.
Namespace:
System.Net
Assembly: System (in System.dll)
Return to top
Ends an asynchronous request for DNS information.
Assembly: System (in System.dll)
public: [ObsoleteAttribute("EndResolve is obsoleted for this type, please use EndGetHostEntry instead. http://go.microsoft.com/fwlink/?linkid=14202")] static IPHostEntry^ EndResolve( IAsyncResult^ asyncResult )
Parameters
- asyncResult
-
Type:
System::IAsyncResult^
An IAsyncResult instance that is returned by a call to the BeginResolve 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.
If the Ipv6Element::Enabled is set to true, 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 the Resolve 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. |
The following example ends an asynchronous request for DNS host information.
public ref class DnsBeginGetHostByName { public: static System::Threading::ManualResetEvent^ allDone = nullptr; ref class RequestState { public: IPHostEntry^ host; RequestState() { host = nullptr; } }; static void RespCallback( IAsyncResult^ ar ) { try { // Convert the IAsyncResult* Object* to a RequestState Object*. RequestState^ tempRequestState = dynamic_cast<RequestState^>(ar->AsyncState); // End the asynchronous request. tempRequestState->host = Dns::EndResolve( ar ); allDone->Set(); } catch ( ArgumentNullException^ e ) { Console::WriteLine( "ArgumentNullException caught!!!" ); Console::WriteLine( "Source : {0}", e->Source ); Console::WriteLine( "Message : {0}", e->Message ); } catch ( Exception^ e ) { Console::WriteLine( "Exception caught!!!" ); Console::WriteLine( "Source : {0}", e->Source ); Console::WriteLine( "Message : {0}", e->Message ); } } }; int main() { DnsBeginGetHostByName::allDone = gcnew ManualResetEvent( false ); // Create an instance of the RequestState class. DnsBeginGetHostByName::RequestState^ myRequestState = gcnew DnsBeginGetHostByName::RequestState; // Begin an asynchronous request for information like host name, IP addresses, or // aliases for specified the specified URI. IAsyncResult^ asyncResult = Dns::BeginResolve( "www.contoso.com", gcnew AsyncCallback( DnsBeginGetHostByName::RespCallback ), myRequestState ); // Wait until asynchronous call completes. DnsBeginGetHostByName::allDone->WaitOne(); Console::WriteLine( "Host name : {0}", myRequestState->host->HostName ); Console::WriteLine( "\nIP address list : " ); for ( int index = 0; index < myRequestState->host->AddressList->Length; index++ ) Console::WriteLine( myRequestState->host->AddressList[ index ] ); Console::WriteLine( "\nAliases : " ); for ( int index = 0; index < myRequestState->host->Aliases->Length; index++ ) Console::WriteLine( myRequestState->host->Aliases[ index ] ); }
.NET Framework
Available since 1.1
Available since 1.1
Show:
