SFTP Object
 
Syntax
 
ProgressInfo(ByVal name As String, ByVal value As String)
 
Description
A general name/value event that provides information about what is happening during a method call. To find out what information is available, write code to handle this event and log the name/value pairs. Most are self-explanatory.
 
Example
Dim WithEvents mySftp As ChilkatSFtp
 
Private Sub mySftp_ProgressInfo(ByVal name As String, ByVal value As String)
 
         'Insert application code here.
 
End Sub