Discuss this help topic in SecureBlackbox Forum

TElDropboxDataStorage.CopyObject

TElDropboxDataStorage     See also     


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


Creates a copy of the data object.

Declaration

[VB.NET]
    Function CopyObject(ByVal SourcePath As String, ByVal DestPath As String, ByVal NewHandler As TElCustomDataStorageSecurityHandler) As TElCustomDataStorageObject
    Function CopyObject(ByVal Obj As TElDropboxDataStorageObject, ByVal DestPath As String, ByVal NewHandler As TElCustomDataStorageSecurityHandler) As TElCustomDataStorageObject
    Function CopyObject(ByVal SourcePath As String, ByVal DestPath As String, ByVal NewHandler As TElCustomDataStorageSecurityHandler, ByVal AcquireObject As Boolean) As TElCustomDataStorageObject
    Function CopyObject(ByVal Obj As TElDropboxDataStorageObject, ByVal DestPath As String, ByVal NewHandler As TElCustomDataStorageSecurityHandler, ByVal AcquireObject As Boolean) As TElCustomDataStorageObject
    Function CopyObject(ByVal Obj As TElCustomDataStorageObject, ByVal NewHandler As TElCustomDataStorageSecurityHandler) As TElCustomDataStorageObject

[Pascal]
    function CopyObject(const SourcePath : string; const DestPath : string; NewHandler : TElCustomDataStorageSecurityHandler) : TElCustomDataStorageObject;
    function CopyObject(Obj : TElDropboxDataStorageObject; const DestPath : string; NewHandler : TElCustomDataStorageSecurityHandler) : TElCustomDataStorageObject;
    function CopyObject(const SourcePath : string; const DestPath : string; NewHandler : TElCustomDataStorageSecurityHandler; AcquireObject : boolean) : TElCustomDataStorageObject;
    function CopyObject(Obj : TElDropboxDataStorageObject; const DestPath : string; NewHandler : TElCustomDataStorageSecurityHandler; AcquireObject : boolean) : TElCustomDataStorageObject;

Parameters

  • AcquireObject - set this parameter to False to free the new copy; returns nil/null/Nothing in this case.
  • DestPath - specifies where the object should be copied.
  • NewHandler - security handler used to perform the operation.
  • Obj - the object to be copied.
  • SourcePath - path to the object to be copied.

Return value

    Returns an instance of TElCustomDataStorageObject that contains a copy of the object.

Description

    Use this method to copy data objects in the remote storage.

See also:     CreateObject     DeleteObject     CopyObjectFromRef    

Discuss this help topic in SecureBlackbox Forum