Discuss this help topic in SecureBlackbox Forum

TSBFileCertStorageSaveOptions

Declared in     See also     


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


Declaration

[C#]
    TSBFileCertStorageSaveOptions = int;
        const int fcsoSaveOnDestroy = 1;
        const int fcsoSaveOnFilenameChange = 2;
        const int fcsoSaveOnChange = 4;

[VB.NET]
    TSBFileCertStorageSaveOptions As Integer
        Const fcsoSaveOnDestroy As Integer = 1
        Const fcsoSaveOnFilenameChange As Integer = 2
        Const fcsoSaveOnChange As Integer = 4

[Pascal]
    under development

[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 TSBFileCertStorageSaveOptions extends TSBBaseEnum {
        const fcsoSaveOnDestroy = 1;
        const fcsoSaveOnFilenameChange = 2;
        const fcsoSaveOnChange = 4;
    }

[Java]
    not available

Possible values

Declared in

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

See also:     TSBFileCertStorageSaveOption    

Discuss this help topic in SecureBlackbox Forum