Discuss this help topic in SecureBlackbox Forum

TElCustomCertStorage.FindNext

TElCustomCertStorage     See also     


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


This method is used for searching for more than one certificate with specified properties in storage.

Declaration

[C#]
    int FindNext(TElCertificateLookup Lookup);

[VB.NET]
    Function FindNext(ByVal Lookup As TElCertificateLookup) As Integer

[Pascal]
    function FindNext(Lookup : TElCertificateLookup) : integer;

[C++]
    int32_t FindNext(TElCertificateLookup &Lookup);
    int32_t FindNext(TElCertificateLookup *Lookup);

[PHP]
    integer FindNext(TElCertificateLookup $Lookup)

[Java]
    int findNext(TElCertificateLookup Lookup);

Parameters

Return value

    Index of the certificate in storage on success.
    -1 if no there are no more certificates that match search criteria in storage.

Description

    Use this method when you need to find more than one certificate with specified requirements. Call this method after certificate with such requirements use FindFirst method.

See also:     FindFirst    

Discuss this help topic in SecureBlackbox Forum