Discuss this help topic in SecureBlackbox Forum

TElSimpleSSHClient.Close

TElSimpleSSHClient     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This method closes the SSH connection

Declaration

[C#]
    void Close();
    void Close(bool FlushPendingData);

[VB.NET]
    Sub Close()
    Sub Close(ByVal FlushPendingData As Boolean)

[Pascal]
    procedure Close;
    procedure Close(FlushPendingData : boolean);

[C++]
    void Close();
    void Close(bool FlushPendingData);

[PHP]
    void Close()
    void Close(bool $FlushPendingData)

[Java]
    void close();
    void close(boolean FlushPendingData);

Parameters

  • FlushPendingData - if this parameter is set to True, the connection will not be closed until all cached data will be sent to the server.

Description

    Call this method to close the SSH connection. All active tunnels will also be closed. After calling this method no more data should be sent through tunnels.

See also:     Open     ExecuteCommand    

Discuss this help topic in SecureBlackbox Forum