SFTP Object
 
Syntax
 
AbortCheck(abort As Long)
 
Description
Provides the opportunity for a method call to be aborted. The AbortCheck event is fired periodically based on the value of the HeartbeatMs property. If HeartbeatMs is 0, then no AbortCheck events will fire. As an example, to fire 5 AbortCheck events per second, set the HeartbeatMs property equal to 200.
 
Example
Dim WithEvents mySftp As ChilkatSFtp
 
Private Sub mySftp_AbortCheck(abort As Long)
 
         'Insert application code here.
 
End Sub