Discuss this help topic in SecureBlackbox Forum
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;
}
Possible values
Declared in
.NET:
- Namespace: SBCustomCertStorage
- Assembly: SecureBlackbox...
VCL:
- Unit: SBCustomCertStorage
Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum