Discuss this help topic in SecureBlackbox Forum

TSBFileCertStorageSaveOption

Declared in     See also     


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


Defines possible causes of storage file saving.

Declaration

[C#]
    TSBFileCertStorageSaveOption = short;
        const short fcsoSaveOnDestroy = 0;
        const short fcsoSaveOnFilenameChange = 1;
        const short fcsoSaveOnChange = 2;

[VB.NET]
    TSBFileCertStorageSaveOption As Short
        Const fcsoSaveOnDestroy As Short = 0
        Const fcsoSaveOnFilenameChange As Short = 1
        Const fcsoSaveOnChange As Short = 2

[Pascal]
    TSBFileCertStorageSaveOption = (fcsoSaveOnDestroy, fcsoSaveOnFilenameChange, fcsoSaveOnChange);

[C++]
    typedef uint8_t TSBFileCertStorageSaveOptionRaw;
    typedef enum { fcsoSaveOnDestroy = 0, fcsoSaveOnFilenameChange = 1, fcsoSaveOnChange = 2 } TSBFileCertStorageSaveOption;
    
    typedef uint32_t TSBFileCertStorageSaveOptionsRaw;
    typedef enum { f_fcsoSaveOnDestroy = 1, f_fcsoSaveOnFilenameChange = 2, f_fcsoSaveOnChange = 4 } TSBFileCertStorageSaveOptions;

[PHP]
    class TSBFileCertStorageSaveOption extends TSBBaseEnum {
        const fcsoSaveOnDestroy = 0;
        const fcsoSaveOnFilenameChange = 1;
        const fcsoSaveOnChange = 2;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBCustomCertStorage
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBCustomCertStorage
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbcustomcertstorage.h

See also:     SaveOptions    

Discuss this help topic in SecureBlackbox Forum