Discuss this help topic in SecureBlackbox Forum

TElSSHClient.OnDebugData

TElSSHClient     


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


This event is fired when debug data from server is received

Declaration

[C#/Java]
    event TSSHDataEvent OnDebugData;
    delegate void TSSHDataEvent(object Sender, byte[] Buffer);

[VB.NET]
    Event OnDebugData As TSSHDataEvent
    Delegate Sub TSSHDataEvent(ByVal Sender As Object, ByVal Buffer As Byte())

[Pascal]
    property OnDataDebug : TSSHDataEvent;
    TSSHDataEvent = procedure (Sender: TObject; Buffer : pointer; Size : longint) of object;

[C++]
    not available

[PHP]
    not available

Parameters

  • Buffer - Buffer with debug data
  • Size - Debug data size

Description

    TElSSHClient fires this event when it receives debug information from the server. Debug information is used to inform other side about internal protocol details during session.

Although the protocol specification doesn't specify the format of debug data, it is in common alphanumeric.

Discuss this help topic in SecureBlackbox Forum