Discuss this help topic in SecureBlackbox Forum
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:Java:
- Package: SecureBlackbox.SSLClient.jar
C++:
Discuss this help topic in SecureBlackbox Forum