SFTP Object
 
Syntax
 
UploadRate(ByVal byteCount As Long, ByVal bytesPerSec As Long)
 
Description
Called periodically with upload progress information: The byteCount is the cumulative number of bytes uploaded so far. The bytesPerSec is the current transfer rate in bytes per second.
 
Example
Dim WithEvents mySftp As ChilkatSFtp
 
Private Sub mySftp_UploadRate(ByVal byteCount As Long, ByVal bytesPerSec As Long)
 
         'Insert application code here.
 
End Sub