Discuss this help topic in SecureBlackbox Forum

TSBDateLookupOption

Declared in     


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


Defines possible parameters of searching by date.

Declaration

[C#/Java]
    TSBDateLookupOption = short;
        const short dloBefore = 1;
        const short dloAfter = 2;
        const short dloBetween = 4;

[VB.NET]
    TSBDateLookupOption As SmallInt
        Const dloBefore As SmallInt = 1
        Const dloAfter As SmallInt = 2
        Const dloBetween As SmallInt = 4

[Pascal]
    TSBDateLookupOption = (dloBefore, dloAfter, dloBetween);

[C++]
    typedef uint8_t TSBDateLookupOptionRaw;
    typedef enum { dloBefore = 0, dloAfter = 1, dloBetween = 2 } TSBDateLookupOption;
    
    typedef uint32_t TSBDateLookupOptionsRaw;
    typedef enum { f_dloBefore = 1, f_dloAfter = 2, f_dloBetween = 4 } TSBDateLookupOptions;

Description

Possible values:


Here 'Cert' means the certificate, which is processed.

Declared in

.NET:
  • Namespace: SBCustomCertStorage
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBCustomCertStorage
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbcustomcertstorage.h

Discuss this help topic in SecureBlackbox Forum