type
TScSFTPReplyCheckFileEvent = procedure(Sender: TObject; const FileName: string; const Handle: TScSFTPFileHandle; CheckFileReplyExtension: TScCheckFileReplyExtension) of object;
property OnReplyCheckFile: TScSFTPReplyCheckFileEvent;
Description
The OnReplyCheckFile event occurs when requesting file check during the CheckFile or CheckFileByHandle method call.
Parameters:
• | Sender - the object that raised the event. |
• | FileName - the path to the file to check. |
• | Handle - a file hanle for this file. This parameter is set only when calling the CheckFileByHandle method. Otherwise its value is nil. |
• | CheckFileReplyExtension - the object that holds received computed hashes. |
See Also