Discuss this help topic in SecureBlackbox Forum

TSBDateLookupOptions

Declared in     See also     


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


Declaration

[C#]
    TSBDateLookupOptions = int;
        const int dloBefore = 1;
        const int dloAfter = 2;
        const int dloBetween = 4;

[VB.NET]
    TSBDateLookupOptions As Integer
        Const dloBefore As Integer = 1
        Const dloAfter As Integer = 2
        Const dloBetween As Integer = 4

[Pascal]
    under development

[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 TSBDateLookupOptions extends TSBBaseEnum {
        const dloBefore = 1;
        const dloAfter = 2;
        const dloBetween = 4;
    }

[Java]
    not available

Possible values

Declared in

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

See also:     TSBDateLookupOption    

Discuss this help topic in SecureBlackbox Forum