Discuss this help topic in SecureBlackbox Forum

TSBBoxObjectStatus

Declared in     


Filter: C#/Java  VB.NET  Pascal  C++  


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:
  • Unit: SBBoxDataStorage
Java:
  • Package: SecureBlackbox.Cloud.jar
C++:
  • sbboxdatastorage.h

Discuss this help topic in SecureBlackbox Forum