NET SFTP Library
IsBusy Property
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class : IsBusy Property
Returns true when any FTP operation is in progress.
Syntax
'Declaration
 
Public ReadOnly Property IsBusy As System.Boolean
'Usage
 
Dim instance As SFTP
Dim value As System.Boolean
 
value = instance.IsBusy
public System.bool IsBusy {get;}
public read-only property IsBusy: System.Boolean; 
public function get IsBusy : System.boolean
public: __property System.bool get_IsBusy();
public:
property System.bool IsBusy {
   System.bool get();
}
Example
SFTP sftp = new SFTP(); //Trial Mode            
//SFTP sftp = new SFTP("place user name here", "place license key here");
 
// set the name of the SSH server( its URL )
sftp.HostAddress = "some.sftp.server.com"; // replace with your SFTP server
sftp.UserName  = "anonymous"; // replace with your user name
sftp.Password = "user@mail.com"; // replace with your password
 
sftp.UploadDirectoryAsync("C:\\Download", "TestDir");
 
// Returns true when any FTP operation is in progress 
System.Console.WriteLine("There are {0} FTP operations in progress ", sftp.IsBusy == true ? "some" : "no");
Dim sftp As SFTP = New SFTP() 'Trial Mode
'Dim sftp As SFTP = New SFTP("place user name here", "place license key here");
 
' set the name of the SSH server( its URL )
sftp.HostAddress = "some.sftp.server.com" ' replace with your SFTP server
sftp.UserName  = "anonymous" ' replace with your user name
sftp.Password = "user@mail.com" ' replace with your password
 
sftp.UploadDirectoryAsync("C:\\Download", "TestDir")
 
' Returns true when any FTP operation is in progress 
If sftp.IsBusy = True Then
    System.Console.WriteLine("There are {0} FTP operations in progress ","some")
Else
    System.Console.WriteLine("There are {0} FTP operations in progress ","no")
End If
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

SFTP Class
SFTP Members