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