Discuss this help topic in SecureBlackbox Forum

TElXMLCRLRefs.Insert

TElXMLCRLRefs     See also     


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


Inserts a CRLRef element into the list at the specified position.

Declaration

[C#]
    void Insert(int Index, TElXMLCRLRef ACRLRef);

[VB.NET]
    Sub Insert(ByVal Index As Integer, ByVal ACRLRef As TElXMLCRLRef)

[Pascal]
    function Insert(Index : integer; ACRLRef : TElXMLCRLRef) : integer;

[C++]
    void Insert(int32_t Index, TElXMLCRLRef &ACRLRef);
    void Insert(int32_t Index, TElXMLCRLRef *ACRLRef);

[PHP]
    void Insert(integer $Index, TElXMLCRLRef $ACRLRef)

[Java]
    void insert(int Index, TElXMLCRLRef ACRLRef);

Parameters

  • Index - Position at which a new item should be inserted.
  • ACRLRef - an element 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 CRLRef element into the list at the specified position.

See also:     CRLRef     Add    

Discuss this help topic in SecureBlackbox Forum