FtpWebRequest::EndGetResponse Method (IAsyncResult^)
Ends a pending asynchronous operation started with BeginGetResponse.
Assembly: System (in System.dll)
Parameters
- asyncResult
-
Type:
System::IAsyncResult^
The IAsyncResult that was returned when the operation started.
Return Value
Type: System.Net::WebResponse^A WebResponse reference that contains an FtpWebResponse instance. This object contains the FTP server's response to the request.
| Exception | Condition |
|---|---|
| ArgumentNullException | asyncResult is null. |
| ArgumentException | asyncResult was not obtained by calling BeginGetResponse. |
| InvalidOperationException | This method was already called for the operation identified by asyncResult. |
| WebException | An error occurred using an HTTP proxy. |
If the operation has not completed at the time the EndGetResponse method is called, EndGetResponse blocks until the operation completes. To prevent blocking, check the IsCompleted property before calling EndGetResponse.
In addition to the exceptions noted in "Exceptions," EndGetResponse rethrows exceptions that were thrown while communicating with the server.
Note |
|---|
This member outputs trace information when you enable network tracing in your application. For more information, see Network Tracing in the .NET Framework. |
Notes to Callers:
This method generates network traffic.
The following code example demonstrates ending an asynchronous operation to get a response. This code example is part of a larger example provided for the FtpWebRequest class overview.
// The EndGetResponseCallback method // completes a call to BeginGetResponse. static void EndGetResponseCallback( IAsyncResult^ ar ) { FtpState^ state = dynamic_cast<FtpState^>(ar->AsyncState); FtpWebResponse ^ response = nullptr; try { response = dynamic_cast<FtpWebResponse^>(state->Request->EndGetResponse( ar )); response->Close(); state->StatusDescription = response->StatusDescription; // Signal the main application thread that // the operation is complete. state->OperationComplete->Set(); } // Return exceptions to the main application thread. catch ( Exception^ e ) { Console::WriteLine( "Error getting response." ); state->OperationException = e; state->OperationComplete->Set(); } }
Available since 2.0
