Discuss this help topic in SecureBlackbox Forum

TSBLookupOptions

Declared in     See also     


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


TSBLookupOptions is a set (bit mask) which contains zero or more bit flags as defined by TSBLookupOption.

Declaration

[C#]
    TSBLookupOptions = int;
        const int loExactMatch = 1;
        const int loMatchAll = 2;
        const int loCompareRDNAsStrings = 4;

[VB.NET]
    TSBLookupOptions As Integer
        Const loExactMatch As Integer = 1
        Const loMatchAll As Integer = 2
        Const loCompareRDNAsStrings As Integer = 4

[Pascal]
    TSBLookupOptions = set of TSBLookupOption;
    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 TSBLookupOptions extends TSBBaseEnum {
        const loExactMatch = 1;
        const loMatchAll = 2;
        const loCompareRDNAsStrings = 4;
    }

[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:     TSBLookupOption    

Discuss this help topic in SecureBlackbox Forum