ComponentSpace FTP Class Library Reference

RemoteFile.AppendCompleted Event

Occurs when the append file has completed.

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

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

BeginAppend is used in asynchronous processing to raise the AppendCompleted event when the append file has completed.

EndAppend is used to complete the operation initiated by a call to BeginAppend and get the append file status when the AppendCompleted event is raised.

See Also

RemoteFile Class | ComponentSpace.Ftp Namespace