Discuss this help topic in SecureBlackbox Forum

TSBCloseReason

Declared in     


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


Defines possible reasons of connection closing.

Declaration

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

[PHP]
    class TSBCloseReason extends TSBBaseEnum {
        const crError = 0;
        const crClose = 1;
    }

[Java]
    public enum TSBCloseReason { crError, crClose }

Values:

Declared in

.NET:
  • Namespace: SBSSLCommon
  • Assembly: SecureBlackbox.SSLCommon
VCL:
  • Unit: SBSSLCommon
Java:
  • Package: SecureBlackbox.SSLCommon.jar
C++:
  • sbsslcommon.h

Discuss this help topic in SecureBlackbox Forum