NET SFTP Library
TimeElapsed Property
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class : TimeElapsed Property
During a file/directory transfer operation, this is the time that has elapsed.
Syntax
'Declaration
 
Public ReadOnly Property TimeElapsed As System.TimeSpan
'Usage
 
Dim instance As SFTP
Dim value As System.TimeSpan
 
value = instance.TimeElapsed
public System.TimeSpan TimeElapsed {get;}
public read-only property TimeElapsed: System.TimeSpan; 
public function get TimeElapsed : System.TimeSpan
public: __property System.TimeSpan get_TimeElapsed();
public:
property System.TimeSpan TimeElapsed {
   System.TimeSpan 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");
 
//we wait 1 second for data to be Transferred 
System.Threading.Thread.Sleep(1000);
 
//During a file/directory transfer operation, this is the time that has elapsed 
System.Console.WriteLine("The currents operation elapsed time is {0}", sftp.TimeElapsed);
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")
 
'we wait 1 second for data to be Transferred 
System.Threading.Thread.Sleep(1000)
 
'During a file/directory transfer operation, this is the time that has elapsed 
System.Console.WriteLine("The currents operation elapsed time is {0}", sftp.TimeElapsed)
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