ComponentSpace FTP Class Library Reference

FailSafeTransfer.DownloadCompleted Event

Occurs when the download file has completed.

[Visual Basic]
Public Event DownloadCompleted As FtpOperationCompletedEventHandler
[C#]
public event FtpOperationCompletedEventHandler DownloadCompleted;

Event Data

The event handler receives an argument of type FtpOperationCompletedEventArgs containing data related to this event. The following FtpOperationCompletedEventArgs property provides information specific to this event.

Property Description
AsyncResult Gets the result of the asynchronous send operation.

Remarks

BeginDownload is used in asynchronous processing to raise the DownloadCompleted event when the download file has completed.

EndDownload is used to complete the operation initiated by a call to BeginDownload and get the download file status when the DownloadCompleted event is raised.

See Also

FailSafeTransfer Class | ComponentSpace.Ftp Namespace