Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.CreateObject

TElDropboxDataStorage     See also     


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


Creates an object.

Declaration

[C#]
    TElDropboxDataStorageObject CreateObject(string Path);
    TElDropboxDataStorageObject CreateObject(string Path, TElCustomDataStorageSecurityHandler Handler);

[VB.NET]
    Function CreateObject(ByVal Path As String) As TElDropboxDataStorageObject
    Function CreateObject(ByVal Path As String, ByVal Handler As TElCustomDataStorageSecurityHandler) As TElDropboxDataStorageObject

[Pascal]
    function CreateObject(const Path : string) : TElDropboxDataStorageObject;
    function CreateObject(const Path : string; Handler : TElCustomDataStorageSecurityHandler) : TElDropboxDataStorageObject;

[C++]
    TElDropboxDataStorageObjectHandle CreateObject(const std::string &Path);
    TElDropboxDataStorageObjectHandle CreateObject(const std::string &Path, TElCustomDataStorageSecurityHandler &Handler);
    TElDropboxDataStorageObjectHandle CreateObject(const std::string &Path, TElCustomDataStorageSecurityHandler *Handler);

[PHP]
    TElDropboxDataStorageObject CreateObject(string $Path)
    TElDropboxDataStorageObject CreateObject(string $Path, TElCustomDataStorageSecurityHandler $Handler)

[Java]
    TElDropboxDataStorageObject createObject(String Path, TElCustomDataStorageSecurityHandler Handler);
    TElDropboxDataStorageObject createObject(String Path);

Parameters

  • Handler - the security handler used to perform the operation.
  • Path - the path to the new file.

Return value

    Returns an instance of TElCustomDataStorageObject that contains a newly created object.

Description

    Use this method to create a new object (file) in the storage.

See also:     CreateFolder     DeleteObject     WriteObject    

Discuss this help topic in SecureBlackbox Forum