Discuss this help topic in SecureBlackbox Forum

TSBCRLLookupOption

Declared in     See also     


Filter: C#/Java  VB.NET  Pascal  C++  


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:
  • Unit: SBCRLStorage
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbcrlstorage.h

See also:     Options    

Discuss this help topic in SecureBlackbox Forum