Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSBGlobalLoggerLevel { glmNone = 0, glmError = 1, glmWarning = 2, glmInfo = 3, glmDebug = 4 };
[VB.NET]
Enum TSBGlobalLoggerLevel
glmNone = 0
glmError = 1
glmWarning = 2
glmInfo = 3
glmDebug = 4
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSBGlobalLoggerLevelRaw;
typedef enum { glmNone = 0, glmError = 1, glmWarning = 2, glmInfo = 3, glmDebug = 4 } TSBGlobalLoggerLevel;
[PHP]
class TSBGlobalLoggerLevel extends TSBBaseEnum {
const glmNone = 0;
const glmError = 1;
const glmWarning = 2;
const glmInfo = 3;
const glmDebug = 4;
}
[Java]
public enum TSBGlobalLoggerLevel { glmNone, glmError, glmWarning, glmInfo, glmDebug }
Possible values
Declared in
.NET:
- Namespace: SBUtils
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum