Discuss this help topic in SecureBlackbox Forum
Defines status of the Box collaboration.
Declaration
[C#/Java]
enum TSBBoxCollaborationStatus { bcsUnknown = 0, bcsPending = 1, bcsRejected = 2, bcsAccepted = 3 };
[VB.NET]
Enum TSBBoxCollaborationStatus
bcsUnknown = 0
bcsPending = 1
bcsRejected = 2
bcsAccepted = 3
End Enum
[Pascal]
TSBBoxCollaborationStatus = (bcsUnknown, bcsPending, bcsRejected, bcsAccepted);
[C++]
typedef uint8_t TSBBoxCollaborationStatusRaw;
typedef enum
{
bcsUnknown = 0,
bcsPending = 1,
bcsRejected = 2,
bcsAccepted = 3
} TSBBoxCollaborationStatus;
Possible values:
Declared in
.NET:
- Namespace: SBBoxDataStorage
- Assembly: SecureBlackbox.Cloud
VCL:Java:
- Package: SecureBlackbox.Cloud.jar
C++:
Discuss this help topic in SecureBlackbox Forum