Discuss this help topic in SecureBlackbox Forum

TElX509CertificateChain.Add

TElX509CertificateChain     See also     


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


Adds certificate to the chain.

Declaration

[C#]
    bool Add(TElX509Certificate Certificate);

[VB.NET]
    Function Add(ByVal Certificate As TElX509Certificate) As Boolean

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

[C++]
    bool Add(TElX509Certificate &Certificate);
    bool Add(TElX509Certificate *Certificate);

[PHP]
    bool Add(TElX509Certificate $Certificate)

[Java]
    boolean add(TElX509Certificate Certificate);

Parameters

  • Certificate - certificate to be added

Return value

    True if the certificate was added succesfully and false in other case.

Description

    Use this method to add new certificate to the chain. If the parent certificate was not added earlier or another error occured, returns false.

See also:     Certificates    

Discuss this help topic in SecureBlackbox Forum