NET SFTP Library
HourDifference Property
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class : HourDifference Property
The difference in hours between the local time and the FTP Server Time. See the CalcHourDifference to automatically calculate the hour difference between the local PC and the FTP Server.
Syntax
'Declaration
 
Public ReadOnly Property HourDifference As System.Double
'Usage
 
Dim instance As SFTP
Dim value As System.Double
 
value = instance.HourDifference
public System.double HourDifference {get;}
public read-only property HourDifference: System.Double; 
public function get HourDifference : System.double
public: __property System.double get_HourDifference();
public:
property System.double HourDifference {
   System.double 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
 
//Calculate the hour difference between this PC and the FTP Server
sftp.CalcHourDifference();
System.Console.WriteLine("The difference in hours is {0}", sftp.HourDifference);
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
 
'Calculate the hour difference between this PC and the FTP Server
sftp.CalcHourDifference()
System.Console.WriteLine("The difference in hours is {0}", sftp.HourDifference)
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