NET SFTP Library
KiloByteAverage Property
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class : KiloByteAverage Property
During a file or directory transfer operation, this is the average transfer rate in KB/Sec.
Syntax
'Declaration
 
Public ReadOnly Property KiloByteAverage As System.Decimal
'Usage
 
Dim instance As SFTP
Dim value As System.Decimal
 
value = instance.KiloByteAverage
public System.decimal KiloByteAverage {get;}
public read-only property KiloByteAverage: System.Currency; 
public function get KiloByteAverage : System.decimal
public: __property System.decimal get_KiloByteAverage();
public:
property System.decimal KiloByteAverage {
   System.decimal 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.UploadDirectory("C:\\Download", "TestDir");
 
//During a file or directory transfer operation, this is the averate transfer rate in KB/Sec 
System.Console.WriteLine("Estimated average speed is {0}(KBS)", sftp.KiloByteAverage);
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.UploadDirectory("C:\\Download", "TestDir")
 
'During a file or directory transfer operation, this is the average transfer rate in KB/Sec 
System.Console.WriteLine("Estimated average speed is {0}(KBS)", sftp.KiloByteAverage)
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