Discuss this help topic in SecureBlackbox Forum

TSBLookupOption

Declared in     See also     


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


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++:
  • sbcustomcertstorage.h

See also:     Options    

Discuss this help topic in SecureBlackbox Forum