Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.DeleteObject

TElDropboxDataStorage     See also     


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


Deletes objects from the storage.

Declaration

[C#]
    void DeleteObject(string Path);
    void DeleteObject(ref TElDropboxDataStorageObject Obj);
    void DeleteObject(ref TElCustomDataStorageObject Obj);

[VB.NET]
    Sub DeleteObject(ByVal Path As String)
    Sub DeleteObject(ByRef Obj As TElDropboxDataStorageObject)
    Sub DeleteObject(ByRef Obj As TElCustomDataStorageObject)

[Pascal]
    procedure DeleteObject(const Path : string);
    procedure DeleteObject(var Obj : TElDropboxDataStorageObject);

[C++]
    void DeleteObject(const std::string &Path);
    void DeleteObject(TElDropboxDataStorageObject &Obj);

[PHP]
    void DeleteObject(string $Path)
    void DeleteObject(TElDropboxDataStorageObject &$Obj)
    void DeleteObject(TElCustomDataStorageObject &$Obj)

[Java]
    void deleteObject(String Path);
    void deleteObject(TElDropboxDataStorageObject Obj);

Parameters

  • Obj - the object to be deleted.
  • Path - specifies path to the object to be deleted.

Description

    Use this method to delete objects from data storage.

See also:     CreateObject     ObjectExists    

Discuss this help topic in SecureBlackbox Forum