Discuss this help topic in SecureBlackbox Forum
Defines possible search options.
Declaration
[C#/Java]
TSBCRLLookupOption = short;
const short cloExactMatch = 1;
const short cloMatchAll = 2;
[VB.NET]
TSBCRLLookupOption As SmallInt
Const cloExactMatch As SmallInt = 1
Const cloMatchAll As SmallInt = 2
[Pascal]
TSBCRLLookupOption = (cloExactMatch, cloMatchAll);
[C++]
typedef uint8_t TSBCRLLookupOptionRaw;
typedef enum { cloExactMatch = 0, cloMatchAll = 1 } TSBCRLLookupOption;
typedef uint32_t TSBCRLLookupOptionsRaw;
typedef enum { f_cloExactMatch = 1, f_cloMatchAll = 2 } TSBCRLLookupOptions;
Description
Possible values:
Declared in
.NET:
- Namespace: SBCRLStorage
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum