Discuss this help topic in SecureBlackbox Forum
Defines possible parameters of searching by date.
Declaration
[C#]
TSBDateLookupOption = short;
const short dloBefore = 0;
const short dloAfter = 1;
const short dloBetween = 2;
[VB.NET]
TSBDateLookupOption As Short
Const dloBefore As Short = 0
Const dloAfter As Short = 1
Const dloBetween As Short = 2
[Pascal]
TSBDateLookupOption = (dloBefore, dloAfter, dloBetween);
[C++]
typedef uint8_t TSBDateLookupOptionRaw;
typedef enum { dloBefore = 0, dloAfter = 1, dloBetween = 2 } TSBDateLookupOption;
typedef uint32_t TSBDateLookupOptionsRaw;
typedef enum { f_dloBefore = 1, f_dloAfter = 2, f_dloBetween = 4 } TSBDateLookupOptions;
[PHP]
class TSBDateLookupOption extends TSBBaseEnum {
const dloBefore = 0;
const dloAfter = 1;
const dloBetween = 2;
}
Possible values
Here 'Cert' means the certificate, which is processed.
Declared in
.NET:
- Namespace: SBCustomCertStorage
- Assembly: SecureBlackbox
VCL:
- Unit: SBCustomCertStorage
Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum