Discuss this help topic in SecureBlackbox Forum
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++:
Discuss this help topic in SecureBlackbox Forum