Discuss this help topic in SecureBlackbox Forum

TElXMLCertIDList.Insert

TElXMLCertIDList     See also     


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


Inserts a certificate identifier into the list at the specified position.

Declaration

[C#]
    void Insert(int Index, TElXMLCertID ACertID);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal ACertID As TElXMLCertID)

[Pascal]
    function Insert(Index : integer; ACertID : TElXMLCertID) : integer;

[C++]
    void Insert(int32_t Index, TElXMLCertID &ACertID);
    void Insert(int32_t Index, TElXMLCertID *ACertID);

[PHP]
    void Insert(integer $Index, TElXMLCertID $ACertID)

[Java]
    void insert(int Index, TElXMLCertID ACertID);

Parameters

  • Index - Position at which a new item should be inserted.
  • ACertID - Certificate identifier that should to be added to the list.

Return value

    Number of the added item in the list.

Description

    Call this method to insert a certificate identifier into the list at the specified position.

See also:     CertID     Add    

Discuss this help topic in SecureBlackbox Forum