SecureBlackbox

200+ components and classes for all aspects of digital security of your data

Filter: C#/Java  VB.NET  Pascal  ActiveX  C++ 


TElSSHTunnelConnectionList.OnClose

TElSSHTunnelConnectionList     See also    


 

This event is fired when the logical connection is closed.

   

Declaration

[C#/Java]
    not applicable;

[VB.NET]
    not applicable;

[Pascal]
    not applicable;

[VB6]
    Event OnClose(ConnIndex As Long, eCloseType As tagTxSSHCloseType)
    Enum tagTxSSHCloseType
      Const TxctReturn = 0
      Const TxctSignal = 1
      Const TxctError = 2
    End Enum

[ActiveX]
    void _stdcall OnClose([in] long ConnIndex, [in] TxSSHCloseType eCloseType);
    typedef enum tagTxSSHCloseType{
      TxctReturn=0,
      TxctSignal=1,
      TxctError=2
    } TxSSHCloseType;

[C++]
    not implemented;

   

Parameters

  • ConnIndex - index in the list of closed connection.
  • eCloseType - specifies reason of connection closing
   

Values


   

Description

    This event is fired when the logical connection is closed. No more data should be sent to this connection after receiving this event.

   

See also:     OnData     OnError     OnExtendedData    

 
Back to top