Discuss this help topic in SecureBlackbox Forum

TElPKCS11CertStorage.RemoveObject

TElPKCS11CertStorage     See also     


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


Removes object from the storage.

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(TElPKCS11Object Obj);
    void removeObject(int Index);

Parameters

  • Index - index of the object in the list
  • Obj - The object to be removed

Description

    Use this method to remove objects from the storage.

See also:     Objects     AddObject     ClearObjects    

Discuss this help topic in SecureBlackbox Forum