type
TScSFTPReplyExtensionEvent = procedure(Sender: TObject; const ExtName: string; Extension: TScSFTPExtension) of object;
property OnReplyExtension: TScSFTPReplyExtensionEvent;
Description
The OnReplyExtension event occurs when the server answers the extended request during the RequestExtension method call.
Parameters:
• | Sender - the object that raised the event. |
• | ExtName - holds the extension name as string. |
• | Extension - the object to which the replied data is written. |
See Also