NET FTP Library
IsBusy Property
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class : IsBusy Property
Returns true when any FTP operation is in progress.
Syntax
'Declaration
 
Public Overridable ReadOnly Property IsBusy As System.Boolean
'Usage
 
Dim instance As FTP
Dim value As System.Boolean
 
value = instance.IsBusy
public virtual System.bool IsBusy {get;}
public read-only property IsBusy: System.Boolean; virtual; 
public function get IsBusy : System.boolean
public: __property virtual System.bool get_IsBusy();
public:
virtual property System.bool IsBusy {
   System.bool get();
}
Example
FTP ftp = new FTP(); //Trial Mode            
//FTP ftp = new FTP("place user name here", "place license key here");
 
// set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu"; // a hungarian university. change this to your ftp server
ftp.UserName = "anonymous"; // replace with your user name
ftp.Password = "user@mail.com"; // replace with your password
 
ftp.UploadDirectoryAsync("C:\\Download", "TestDir");
 
// Returns true when any FTP operation is in progress 
System.Console.WriteLine("There are {0} FTP operations in progress ", ftp.IsBusy == true ? "some" : "no");
Dim ftp As FTP = New FTP() 'Trial Mode
'FTP ftp = new FTP("place user name here", "place license key here");
 
' set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu" ' a hungarian university. change this to your ftp server
ftp.UserName = "anonymous" ' replace with your user name
ftp.Password = "user@mail.com" ' replace with your password
 
ftp.UploadDirectoryAsync("C:\\Download", "TestDir")
 
' Returns true when any FTP operation is in progress 
If ftp.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

FTP Class
FTP Members