NET SFTP Library
Disconnect Method
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class : Disconnect Method
Explicitly disconnect from the SFTP server.
Syntax
'Declaration
 
Public Function Disconnect() As System.Boolean
'Usage
 
Dim instance As SFTP
Dim value As System.Boolean
 
value = instance.Disconnect()
public System.bool Disconnect()
public function Disconnect(): System.Boolean; 
public function Disconnect() : System.boolean;
public: System.bool Disconnect(); 
public:
System.bool Disconnect(); 
Example
SFTP sftp = new SFTP(); //Trial Mode            
//SFTP sftp = new SFTP("place user name here", "place license key here");
 
// set the name of the SFTP server( its URL )
sftp.HostAddress = "some.sftp.server.com";
sftp.UserName = "anonymous"; // replace with your user name
sftp.Password = "user@mail.com"; // replace with your password
 
sftp.Connect();
 
sftp.Disconnect();
Dim sftp As SFTP = New SFTP() 'Trial Mode
'Dim sftp = New SFTP("place user name here", "place license key here")
 
' set the name of the SFTP server( its URL )
sftp.HostAddress = "some.sftp.server.com"
sftp.UserName = "anonymous" ' replace with your user name
sftp.Password = "user@mail.com" ' replace with your password
 
sftp.Connect()
 
sftp.Disconnect()
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