Discuss this help topic in SecureBlackbox Forum

TElSSHClient.OnError

TElSSHClient     


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


This event is fired when some error take place during the session

Declaration

[C#/Java]
    event TSSHErrorEvent OnError;
    delegate void TSSHErrorEvent(object Sender, int ErrorCode);

[VB.NET]
    Event OnError As TSSHErrorEvent
    Delegate Sub TSSHErrorEvent(ByVal Sender As Object, ByVal ErrorCode As Integer)

[Pascal]
    property OnError : TSSHErrorEvent;
    TSSHErrorEvent = procedure (Sender: TObject; ErrorCode : integer) of object;

[C++]
    not available

[PHP]
    not available

Parameters

  • ErrorCode - The constant which describes the error

Values


Description

    TElSSHClient fires this event if an error occurs during session. Most of errors are fatal and lead to closing of the connection.

Discuss this help topic in SecureBlackbox Forum