Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSBProtectedObjectMetadataLocation { omlUnprotectedObject = 0, omlNoMetadata = 1, omlExternal = 2, omlExternalObject = 3, omlBeginning = 4, omlEnd = 5 };
[VB.NET]
Enum TSBProtectedObjectMetadataLocation
omlUnprotectedObject = 0
omlNoMetadata = 1
omlExternal = 2
omlExternalObject = 3
omlBeginning = 4
omlEnd = 5
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSBProtectedObjectMetadataLocationRaw;
typedef enum { omlUnprotectedObject = 0, omlNoMetadata = 1, omlExternal = 2, omlExternalObject = 3, omlBeginning = 4, omlEnd = 5 } TSBProtectedObjectMetadataLocation;
[PHP]
class TSBProtectedObjectMetadataLocation extends TSBBaseEnum {
const omlUnprotectedObject = 0;
const omlNoMetadata = 1;
const omlExternal = 2;
const omlExternalObject = 3;
const omlBeginning = 4;
const omlEnd = 5;
}
[Java]
public enum TSBProtectedObjectMetadataLocation { omlUnprotectedObject, omlNoMetadata, omlExternal, omlExternalObject, omlBeginning, omlEnd }
Possible values
Declared in
.NET:
- Namespace: SBDataStorageUtils
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum