Discuss this help topic in SecureBlackbox Forum
Defines possible search options.
Declaration
[C#/Java]
TSBLookupOption = short;
const short loExactMatch = 1;
const short loMatchAll = 2;
const short loCompareRDNAsStrings = 4;
[VB.NET]
TSBLookupOption As SmallInt
Const loExactMatch As SmallInt = 1
Const loMatchAll As SmallInt = 2
Const loCompareRDNAsStrings As SmallInt = 4
[Pascal]
TSBLookupOption = (loExactMatch, loMatchAll, loCompareRDNAsStrings);
[C++]
typedef uint8_t TSBLookupOptionRaw;
typedef enum { loExactMatch = 0, loMatchAll = 1, loCompareRDNAsStrings = 2 } TSBLookupOption;
typedef uint32_t TSBLookupOptionsRaw;
typedef enum { f_loExactMatch = 1, f_loMatchAll = 2, f_loCompareRDNAsStrings = 4 } TSBLookupOptions;
Description
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