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