Discuss this help topic in SecureBlackbox Forum

TElCustomCertStorage.IndexOf

TElCustomCertStorage     See also     


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


Returns the index of certificate in the list

Declaration

[C#]
    int IndexOf(TElX509Certificate Certificate);

[VB.NET]
    Function IndexOf(ByVal Certificate As TElX509Certificate) As Integer

[Pascal]
    function IndexOf(Certificate: TElX509Certificate): Integer;

[C++]
    int32_t IndexOf(TElX509Certificate &Certificate);
    int32_t IndexOf(TElX509Certificate *Certificate);

[PHP]
    integer IndexOf(TElX509Certificate $Certificate)

[Java]
    int indexOf(TElX509Certificate Certificate);

Parameters

  • Certificate - Certificate, whose index is queried

Return value

    Index of specified certificate.

Description

    Use this method to get the certificate index in the list. This method uses certificate's binary presentation for searching.

See also:     Certificates property     IsPresent method    

Discuss this help topic in SecureBlackbox Forum