EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElCertificateLookup.DateLookupOptions

TElCertificateLookup     See also    


 

Parameters for searching by date.

 
 

Declaration

[C#]
    TSBDateLookupOptions DateLookupOptions

    TSBDateLookupOptions = SmallInt

Represents a bit mask which contains zero or more bit flags as defined by TSBDateLookupOption

[VB.NET]
    Property DateLookupOptions As TSBDateLookupOptions

    TSBDateLookupOptions As SmallInt

Represents a bit mask which contains zero or more bit flags as defined by TSBDateLookupOption

[Pascal]
    property DateLookupOptions : TSBDateLookupOptions;
    TSBDateLookupOptions = set of TSBDateLookupOption;

[VB6]
    Property IElCertificateLookupX.DateLookupOptions As TxSBDateLookupOptions

    TxSBDateLookupOptions As Long

Represents a bit mask which contains zero or more bit flags as defined by TSBDateLookupOption

[ActiveX]
    HRESULT _stdcall IElCertificateLookupX.DateLookupOptions([in] TxSBDateLookupOptions Value );
    HRESULT _stdcall IElCertificateLookupX.DateLookupOptions([out, retval] TxSBDateLookupOptions * Value );

    typedef long TxSBDateLookupOptions;

Represents a bit mask which contains zero or more bit flags as defined by TSBDateLookupOption

[DLL]
    not implemented;
 
 

Values:

[.NET], [ActiveX] [Pascal] Description
dloBefore = 1 dloBefore Cert.ValidFrom < ValidFrom and
Cert.ValidTo < ValidFrom
dloAfter = 2 dloAfter Cert.ValidFrom > ValidTo and
Cert.ValidTo > ValidTo
dloBetween = 4 dloBetween Cert.ValidFrom > ValidFrom and
Cert.ValidTo < ValidTo
dloBefore and dloBetween Cert.ValidFrom < ValidFrom and
Cert.ValidTo > ValidFrom
dloBetween and dloAfter Cert.ValidFrom > ValidFrom and
Cert.ValidTo > ValidTo
dloBefore and dloAfter Cert.ValidTo < ValidFrom or
Cert.ValidFrom > ValidTo
dloBefore and dloBetween and dloAfter Cert.ValidFrom < ValidFrom and
Cert.ValidTo > ValidTo
Declared in
[.NET] [Pascal]
Namespace: SBCustomCertStorage
Assembly: SecureBlackbox
Unit: SBCustomCertStorage

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

 
 

Description

    Use this property to define validity period that certificates must have.

    Note:  Setting of DateLookupOptions differs for VCL and ActiveX and .NET versions. To enable some option in ActiveX and .NET use bitwise OR operation, for example "dloBefore | dloAfter | dloBetween".

 
 

See also:     ValidFrom     ValidTo     KeySizeLookupOption     KeyUsageLookupOptions    

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation