Discuss this help topic in SecureBlackbox Forum
This topic is under development…
Declaration
[C#]
public enum TSBJsonType { jsonNull = 0, jsonBoolean = 1, jsonString = 2, jsonNumber = 3 };
[VB.NET]
Enum TSBJsonType
jsonNull = 0
jsonBoolean = 1
jsonString = 2
jsonNumber = 3
End Enum
[Pascal]
TSBJsonType = (jsonNull, jsonBoolean, jsonString, jsonNumber);
[C++]
typedef uint8_t TSBJsonTypeRaw;
typedef enum { jsonNull = 0, jsonBoolean = 1, jsonString = 2, jsonNumber = 3 } TSBJsonType;
[PHP]
class TSBJsonType extends TSBBaseEnum {
const jsonNull = 0;
const jsonBoolean = 1;
const jsonString = 2;
const jsonNumber = 3;
}
[Java]
public enum TSBJsonType { jsonNull, jsonBoolean, jsonString, jsonNumber }
Possible values
Declared in
.NET:
- Namespace: SBJSON
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum