Discuss this help topic in SecureBlackbox Forum

TSBLookupOption

Declared in     See also     


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


Defines possible search options.

Declaration

[C#]
    TSBLookupOption = short;
        const short loExactMatch = 0;
        const short loMatchAll = 1;
        const short loCompareRDNAsStrings = 2;

[VB.NET]
    TSBLookupOption As Short
        Const loExactMatch As Short = 0
        Const loMatchAll As Short = 1
        Const loCompareRDNAsStrings As Short = 2

[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;

[PHP]
    class TSBLookupOption extends TSBBaseEnum {
        const loExactMatch = 0;
        const loMatchAll = 1;
        const loCompareRDNAsStrings = 2;
    }

[Java]
    not available

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