Discuss this help topic in SecureBlackbox Forum

TSBCloseReason

Declared in     


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


Defines possible reasons of connection closing.

Declaration

[C#/Java]
    enum TSBCloseReason { crError = 0, crClose = 1 };

[VB.NET]
    Enum TSBCloseReason
        crError = 0
        crClose = 1
    End Enum

[Pascal]
    TSBCloseReason = (crError, crClose);

[C++]
    typedef uint8_t TSBCloseReasonRaw;
    typedef enum { crError = 0, crClose = 1 } TSBCloseReason;

Description

Possible values:


Declared in

.NET:
  • Namespace: SBSSLClient
  • Assembly: SecureBlackbox.SSLClient
VCL:
  • Unit: SBSSLClient
Java:
  • Package: SecureBlackbox.SSLClient.jar
C++:
  • sbsslclient.h

Discuss this help topic in SecureBlackbox Forum