Discuss this help topic in SecureBlackbox Forum

TSBBoxSyncState

Declared in     


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


Defines whether a Box folder will be synced by the Box sync clients or not.

Declaration

[C#/Java]
    enum TSBBoxSyncState { bssUnknown = 0, bssNotSynced = 1, bssPartiallySynced = 2, bssSynced = 3 };

[VB.NET]
    Enum TSBBoxSyncState
        bssUnknown = 0
        bssNotSynced = 1
        bssPartiallySynced = 2
        bssSynced = 3
    End Enum

[Pascal]
    TSBBoxSyncState = (bssUnknown, bssNotSynced, bssPartiallySynced, bssSynced);

[C++]
    typedef uint8_t TSBBoxSyncStateRaw;
    typedef enum
    {
        bssUnknown = 0,
        bssNotSynced = 1,
        bssPartiallySynced = 2,
        bssSynced = 3
    } TSBBoxSyncState;

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