Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBCertSecurityLevel = short;
const short cslLow = 0;
const short cslMedium = 1;
const short cslHigh = 2;
[VB.NET]
TSBCertSecurityLevel As Short
Const cslLow As Short = 0
Const cslMedium As Short = 1
Const cslHigh As Short = 2
[Pascal]
under development
[C++]
typedef uint8_t TSBCertSecurityLevelRaw;
typedef enum { cslLow = 0, cslMedium = 1, cslHigh = 2 } TSBCertSecurityLevel;
[PHP]
class TSBCertSecurityLevel extends TSBBaseEnum {
const cslLow = 0;
const cslMedium = 1;
const cslHigh = 2;
}
[Java]
public enum TSBCertSecurityLevel { cslLow, cslMedium, cslHigh }
Possible values
Declared in
.NET:
- Namespace: SBX509
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum