SecureBlackbox

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

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


TElSSHTunnelConnectionList.OnExtendedData

TElSSHTunnelConnectionList     See also    


 

This event is fired when a portion of extended data is received via logical connection

   

Declaration

[C#/Java]
    not applicable;

[VB.NET]
    not applicable;

[Pascal]
    not applicable;

[VB6]
    Event OnExtendedData(ConnIndex As Long, Buffer)

[ActiveX]
    void _stdcall OnExtendedData([in] long ConnIndex, [in] VARIANT Buffer);

[C++]
    not implemented;

   

Parameters

  • ConnIndex - index of the connection in the list.
  • Buffer - pointer to buffer with decrypted data
   

Description

    This event is fired when the new block of decrypted extended data is available. For command and shell tunnels extended data come from the standard error (stderr).
    To get the type of extended data, check ExtendedDataType property.

   

See also:     OnClose     OnData     OnError    

 
Back to top