Description
-
Called when file transfer is complete.
Return Type
-
None
Syntax
-
object.TransferComplete Owner,
User, Successful
The TransferComplete Method syntax has these parts:
| object |
An expression
evaluating to an object of type wodFTPDNotify. |
| Owner |
A wodFTPDCom object. Reference
to wodFTPServer instance that called this notification
method. |
| User |
A FtpUser object. Reference
to user who completed file transfer. |
|
Successful |
A Boolean
value. Determines if transfer was successful. |
Remarks
-
NOTE: This method is called only if you
implemented IwodFTPDNotify interface in your application, and
wodFTPD.Notification
property has received reference to instance of your implementation.
TransferComplete notification method is called after
file transfer is done. Variable Successful will be set to True if file
transfer was successful, or False if an error (or
abortion) occurred.
|