Discuss this help topic in SecureBlackbox Forum
Defines possible access types to storage.
Declaration
[C#]
public enum TSBFileCertStorageAccessType { csatImmediate = 0, csatOnDemand = 1 };
[VB.NET]
Enum TSBFileCertStorageAccessType
csatImmediate = 0
csatOnDemand = 1
End Enum
[Pascal]
TSBFileCertStorageAccessType = (csatImmediate, csatOnDemand);
[C++]
typedef uint8_t TSBFileCertStorageAccessTypeRaw;
typedef enum { csatImmediate = 0, csatOnDemand = 1 } TSBFileCertStorageAccessType;
[PHP]
class TSBFileCertStorageAccessType extends TSBBaseEnum {
const csatImmediate = 0;
const csatOnDemand = 1;
}
[Java]
public enum TSBFileCertStorageAccessType { csatImmediate, csatOnDemand }
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