EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSecureServer.OnError

TElSecureServer    


 

This event is fired when the error occurs during protocol flow

 
 

Declaration

[C#]
    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;

[VB6]
    not implemented;

[ActiveX]
    not implemented;

[DLL]
    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:

Definition Value
ERROR_FACILITY_SSL 73728 (0x12000)
ERROR_SSL_CONNECTION_CANCELLED_BY_USER 73729 (0x12001)
ERROR_SSL_UNEXPECTED_MESSAGE 75777 (0x12801)
ERROR_SSL_BAD_RECORD_MAC 75778 (0x12802)
ERROR_SSL_DECRYPTION_FAILED 75779 (0x12803)
ERROR_SSL_RECORD_OVERFLOW 75780 (0x12804)
ERROR_SSL_DECOMPRESSION_FAILURE 75781 (0x12805)
ERROR_SSL_HANDSHAKE_FAILURE 75782 (0x12806)
ERROR_SSL_NO_CERTIFICATE 75783 (0x12807)
ERROR_SSL_BAD_CERTIFICATE 75784 (0x12808)
ERROR_SSL_UNSUPPORTED_CERTIFICATE 75785 (0x12809)
ERROR_SSL_CERTIFICATE_REVOKED 75786 (0x1280A)
ERROR_SSL_CERTIFICATE_EXPIRED 75787 (0x1280B)
ERROR_SSL_CERTIFICATE_UNKNOWN 75788 (0x1280C)
ERROR_SSL_ILLEGAL_PARAMETER 75789 (0x1280D)
ERROR_SSL_UNKNOWN_CA 75790 (0x1280E)
ERROR_SSL_ACCESS_DENIED 75791 (0x1280F)
ERROR_SSL_DECODE_ERROR 75792 (0x12810)
ERROR_SSL_DECRYPT_ERROR 75793 (0x12811)
ERROR_SSL_EXPORT_RESTRICTION 75794 (0x12812)
ERROR_SSL_PROTOCOL_VERSION 75795 (0x12813)
ERROR_SSL_INSUFFICIENT_SECURITY 75796 (0x12814)
ERROR_SSL_INTERNAL_ERROR 75797 (0x12815)
ERROR_SSL_USER_CANCELED 75798 (0x12816)
ERROR_SSL_NO_RENEGOTIATION 75799 (0x12817)
ERROR_SSL_CLOSE_NOTIFY 75800 (0x12818)
ERROR_SSL_UNKNOWN_PROTOCOL_ERROR 75801 (0x12819)
Declared in
[.NET] [Pascal]
Namespace: SBSSLConstants
Assembly: SecureBlackbox.SSLCommon
Unit: SBSSLConstants

 
 

Description

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

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation