Discuss this help topic in SecureBlackbox Forum

TSBBoxObjectStatus

Declared in     


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


Defines possible status values for the files and folders in the Box data storage.

Declaration

[C#]
    public 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;

[PHP]
    class TSBBoxObjectStatus extends TSBBaseEnum {
        const bosUnknown = 0;
        const bosActive = 1;
        const bosTrashed = 2;
    }

[Java]
    public enum TSBBoxObjectStatus { bosUnknown, bosActive, bosTrashed }

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