Discuss this help topic in SecureBlackbox Forum
Defines possible search options.
Declaration
[C#]
TSBCRLLookupOption = short;
const short cloExactMatch = 0;
const short cloMatchAll = 1;
[VB.NET]
TSBCRLLookupOption As Short
Const cloExactMatch As Short = 0
Const cloMatchAll As Short = 1
[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;
[PHP]
class TSBCRLLookupOption extends TSBBaseEnum {
const cloExactMatch = 0;
const cloMatchAll = 1;
}
Possible values
Declared in
.NET:
- Namespace: SBCRLStorage
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum