Discuss this help topic in SecureBlackbox Forum

TSBFileCertStorageSaveOption

Declared in     See also     


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


Defines possible causes of storage file saving.

Declaration

[C#/Java]
    TSBFileCertStorageSaveOption = short;
        const short fcsoSaveOnDestroy = 1;
        const short fcsoSaveOnFilenameChange = 2;
        const short fcsoSaveOnChange = 4;

[VB.NET]
    TSBFileCertStorageSaveOption As SmallInt;
        Const fcsoSaveOnDestroy As SmallInt = 1
        Const fcsoSaveOnFilenameChange As SmallInt = 2
        Const fcsoSaveOnChange As SmallInt = 4

[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;

Description

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