Discuss this help topic in SecureBlackbox Forum

TElSSHServer.OnError

TElSSHServer     


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


This event is fired when some error takes 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

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

Discuss this help topic in SecureBlackbox Forum