Discuss this help topic in SecureBlackbox Forum
Defines possible status values for the files and folders in the Box data storage.
Declaration
[C#/Java]
enum TSBBoxObjectStatus { bosUnknown = 0, bosActive = 1, bosTrashed = 2 };
[VB.NET]
Enum TSBBoxObjectStatus
bosUnknown = 0
bosActive = 1
bosTrashed = 2
End Enum
[Pascal]
TSBBoxObjectStatus = (bosUnknown, bosActive, bosTrashed);
[C++]
typedef uint8_t TSBBoxObjectStatusRaw;
typedef enum
{
bosUnknown = 0,
bosActive = 1,
bosTrashed = 2
} TSBBoxObjectStatus;
Possible values:
Declared in
.NET:
- Namespace: SBBoxDataStorage
- Assembly: SecureBlackbox.Cloud
VCL:Java:
- Package: SecureBlackbox.Cloud.jar
C++:
Discuss this help topic in SecureBlackbox Forum