Discuss this help topic in SecureBlackbox Forum

TElCertificateRevocationList.IndexOf

TElCertificateRevocationList     See also     


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


Returns the index of the desired 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 which must be found in the list.

Return value

    Index of the passed certificate if the certificate is present in the list, otherwise -1 is returned.

Description

    Use this method to get the index of the certificate in the list.

See also:     Items    

Discuss this help topic in SecureBlackbox Forum