Discuss this help topic in SecureBlackbox Forum

TElCertificateRevocationList.Remove

TElCertificateRevocationList     See also     


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


Removes the certificate information from the CRL.

Declaration

[C#]
    bool Remove(TElX509Certificate Certificate);
    bool Remove(int Index);

[VB.NET]
    Function Remove(ByVal Certificate As TElX509Certificate) As Boolean
    Function Remove(ByVal Index As Integer) As Boolean

[Pascal]
    function Remove(Certificate : TElX509Certificate) : boolean;
    function Remove(Index : integer) : boolean;

[C++]
    bool Remove(TElX509Certificate &Certificate);
    bool Remove(TElX509Certificate *Certificate);
    bool Remove(int32_t Index);

[PHP]
    bool Remove(TElX509Certificate $Certificate)
    bool Remove(integer $Index)

[Java]
    boolean remove(int Index);
    boolean remove(TElX509Certificate Certificate);

Parameters

Return value

    True if certificate was removed successfully.
    False otherwise.

Description

    Use this method to remove certificate information from the CRL.

See also:     Add    

Discuss this help topic in SecureBlackbox Forum