FileTransferProgress Event
    
 

Description

Fires during file transfer.


Syntax

Private Sub object_FileTransferProgress(Contact, File, Position)



The FileTransferProgress Event syntax has these parts:

Part Description
object A wodXMPP object.
Contact A XMPPContact object. Reference to contact that is sending/receiving the file. Can be NULL (Nothing in VB).
File A XMPPFile object. Reference to file that was sent/received.
Position A Long value. Holds current file transfer position.

Remarks

This event will be triggered more than once during file transfer, and file is being transferred to/from remote side. You can use it to show progress bar. There is no Size argument since Size is available from File object itself.