type
TScSFTPSuccessEvent = procedure(Sender: TObject; Operation: TScSFTPOperation; const FileName: string; const Handle: TScSFTPFileHandle; const Message: string) of object;
property OnSuccess: TScSFTPSuccessEvent;
Description
The OnSuccess event occurs after successful execution of an operation that does not return any data (for example, RemoveFile).
Parameters:
• | Sender - the object that raised the event. |
• | Operation - determines which operation was executed. |
• | FileName - the name of the file or directory with which the operation was performed. |
• | Handle - the handle handle of the file with which the operation was performed. May be of the nil value. |
• | Message - holds the message about the result of the operation execution. |
See Also