SecureBlackbox

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

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


TElSSLClient.OnError

TElSSLClient     


 

This event is fired when the error occurs during protocol flow

 

Declaration

[C#/Java]
    event TSBErrorEvent OnError;
    delegate void TSBErrorEvent(object Sender, int ErrorCode, bool Fatal, bool Remote)

[VB.NET]
    Event OnError As TSBErrorEvent
    Delegate Sub TSBErrorEvent(ByVal Sender As Object, ByVal ErrorCode As Integer, ByVal Fatal As Boolean, ByVal Remote As Boolean)

[Pascal]
    property OnError : TSBErrorEvent;
    TSBErrorEvent = procedure(Sender: Object; ErrorCode: integer; Fatal: boolean; Remote : boolean) of object;

[C++]
    not implemented;

   

Parameters

  • ErrorCode - the error code, see values below
  • Fatal - the error is fatal and the session will be closed immediately
  • Remote - the error was reported by the remote side
   

Values:


   

Description

    This event is fired by TElSSLClient when the error occurs during protocol flow.

   
Back to top