EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElCertificateRevocationList.Remove

TElCertificateRevocationList     See also    


 

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;

[VB6]
    Sub IElCertificateRevocationListX.Remove(Certificate As TElCertificateX)
    Sub IElCertificateRevocationListX.RemoveByIndex(Index As Long)

[ActiveX]
    HRESULT _stdcall IElCertificateRevocationListX.Remove([in] IElCertificateX4 * Certificate );
    HRESULT _stdcall IElCertificateRevocationListX.RemoveByIndex([in] long Index );

[DLL]
    __stdcall BOOL SBCertificateRevocationListRemove(HANDLE hCRL, HANDLE hCert);
    __stdcall BOOL SBCertificateRevocationListRemoveByIndex(HANDLE hCRL, int nIndex);
 
 

Parameters

  • [DLL]hCRL - handle to the TElCertificateRevocationList object that was returned by Constructor
  • [DLL]hCert - handle to the TElX509Certificate object that was returned by Constructor
  • Certificate - Certificate object, initialized by LoadFromBuffer, LoadFromBufferPEM or LoadFromBufferPFX method
  • Index (nIndex) - Index of certificate in the CRL
 
 

Return value

    True if certificate was removed successfully.
    False otherwise.

 
 

Description

    Use this method to remove certificate information from the CRL.

 
 

See also:     Add    

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation