Discuss this help topic in SecureBlackbox Forum

TElCustomCertStorage.FindFirst

TElCustomCertStorage     See also     


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


Searches for the first certificate that matches given criteria.

Declaration

[C#]
    int FindFirst(TElCertificateLookup Lookup);

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

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

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

[PHP]
    integer FindFirst(TElCertificateLookup $Lookup)

[Java]
    int findFirst(TElCertificateLookup Lookup);

Parameters

Return value

    Index of the certificate in storage on success.
    -1 if no certificates that match the search criteria were found.

Description

    Searches for the first certificate that matches given criteria. If you need to find more than one certificate use FindNext method to search for next certificates.

See also:     FindNext    

Discuss this help topic in SecureBlackbox Forum