Discuss this help topic in SecureBlackbox Forum

TElPKCS11SessionInfo.RemoveObject

TElPKCS11SessionInfo     See also     


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


Removes object from list.

Declaration

[C#]
    void RemoveObject(int Index);
    void RemoveObject(TElPKCS11Object Obj);

[VB.NET]
    Sub RemoveObject(ByVal Index As Integer)
    Sub RemoveObject(ByVal Obj As TElPKCS11Object)

[Pascal]
    procedure RemoveObject(Index : integer);
    procedure RemoveObject(Obj : TElPKCS11ManagerObject);

[C++]
    void RemoveObject(int32_t Index);
    void RemoveObject(TElPKCS11Object &Obj);
    void RemoveObject(TElPKCS11Object *Obj);

[PHP]
    void RemoveObject(integer $Index)
    void RemoveObject(TElPKCS11Object $Obj)

[Java]
    void removeObject(int Index);
    void removeObject(TElPKCS11Object Obj);

Parameters

  • Index - index of the desired object in list. The first item has Index=0, the second has Index=1, and so on.
  • Obj - the object to be removed.

Description

    Call this method to remove an object from the session. Session objects are represented by Objects list.

See also:     Objects     RemoveObjectByHandle     AddObject     ClearObjects     GetObject    

Discuss this help topic in SecureBlackbox Forum