Discuss this help topic in SecureBlackbox Forum

TSBDateLookupOption

Declared in     


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


Defines possible parameters of searching by date.

Declaration

[C#]
    TSBDateLookupOption = short;
        const short dloBefore = 0;
        const short dloAfter = 1;
        const short dloBetween = 2;

[VB.NET]
    TSBDateLookupOption As Short
        Const dloBefore As Short = 0
        Const dloAfter As Short = 1
        Const dloBetween As Short = 2

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

[PHP]
    class TSBDateLookupOption extends TSBBaseEnum {
        const dloBefore = 0;
        const dloAfter = 1;
        const dloBetween = 2;
    }

[Java]
    not available

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