Discuss this help topic in SecureBlackbox Forum

TElCertificateRevocationList.Add

TElCertificateRevocationList     See also     


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


Adds item to the CRL and returns its index.

Declaration

[C#]
    int Add(TElX509Certificate Certificate);
    int Add(byte[] SerialNumber);

[VB.NET]
    Function Add(ByVal Certificate As TElX509Certificate) As Integer
    Function Add(ByVal SerialNumber As Byte()) As Integer

[Pascal]
    function Add(Certificate : TElX509Certificate) : integer;

[C++]
    int32_t Add(TElX509Certificate &Certificate);
    int32_t Add(TElX509Certificate *Certificate);
    int32_t Add(const std::vector<uint8_t> &SerialNumber);

[PHP]
    integer Add(TElX509Certificate $Certificate)
    integer Add(array of byte|string|NULL $SerialNumber)

[Java]
    int add(byte[] SerialNumber);
    int add(TElX509Certificate Certificate);

Parameters

Return value

    Returns the index of the newl added item in the list.

Description

    Use this method to add a new certificate information to the CRL. Use Items property to access the newly added instance of TElRevocationItem, and set its additional properties, such as reason code etc.

See also:     Items     Remove    

Discuss this help topic in SecureBlackbox Forum