Discuss this help topic in SecureBlackbox Forum

TElSSHCustomForwarding.Close

TElSSHCustomForwarding     See also     


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


This method closes the SSH connection

Declaration

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

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

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

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

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

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

Parameters

  • Wait - if this parameter is set to True,the session will not be terminated until all cached data is sent to the server. This is equal to calling Close() without parameters.

Description

    Call this method to close the SSH connection. Port forwarding is stopped immediately after calling this method.

See also:     FlushCachedDataOnClose     Open    

Discuss this help topic in SecureBlackbox Forum