NET FTP Library
Timeout Property
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class : Timeout Property
Gets/Sets the number of milliseconds to wait for a request from the FTP server. The default is to wait 30000 (30 seconds).
Syntax
'Declaration
 
Public Overridable Property Timeout As System.Integer
'Usage
 
Dim instance As FTP
Dim value As System.Integer
 
instance.Timeout = value
 
value = instance.Timeout
public virtual System.int Timeout {get; set;}
public read-write property Timeout: System.Integer; virtual; 
public function get,set Timeout : System.int
public: __property virtual System.int get_Timeout();
public: __property virtual void set_Timeout( 
   System.int value
);
public:
virtual property System.int Timeout {
   System.int get();
   void set (    System.int value);
}
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
 
//Gets/Sets the number of milliseconds to wait for a request 
System.Console.WriteLine("The FTP component currently waits {0} milliseconds for a request before throwing an exception", ftp.Timeout);
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
 
'Gets/Sets the number of milliseconds to wait for a request 
System.Console.WriteLine("The FTP component currently waits {0} milliseconds for a request before throwing an exception", ftp.Timeout)
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