ComponentSpace FTP Class Library Reference

RemoteDirectory.ListCompleted Event

Occurs when the list directory has completed.

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

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

BeginList is used in asynchronous processing to raise the ListCompleted event when the list directory has completed.

EndList is used to complete the operation initiated by a call to BeginList and get the list directory status when the ListCompleted event is raised.

See Also

RemoteDirectory Class | ComponentSpace.Ftp Namespace