Discuss this help topic in SecureBlackbox Forum

TElGoogleDriveDataStorage.AcquireObject

TElGoogleDriveDataStorage     See also     


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


Acquires an object from data storage.

Declaration

[C#]
    TElGoogleDriveDataStorageObject AcquireObject(string ObjectID);
    TElCustomDataStorageObject AcquireObject();

[VB.NET]
    Function AcquireObject(ByVal ObjectID As String) As TElGoogleDriveDataStorageObject
    Function AcquireObject() As TElCustomDataStorageObject

[Pascal]
    function AcquireObject(): TElCustomDataStorageObject;
    function AcquireObject(const ObjectID: string): TElGoogleDriveDataStorageObject;

[C++]
    TElGoogleDriveDataStorageObjectHandle AcquireObject(const std::string &ObjectID);

[PHP]
    TElGoogleDriveDataStorageObject AcquireObject(string $ObjectID)
    TElCustomDataStorageObject AcquireObject()

[Java]
    TElGoogleDriveDataStorageObject acquireObject(String ObjectID);

Parameters

  • ObjectID - specifies the object's ID.

Return value

    Returns an instance of TElCustomDataStorageObject class which contains the acquired object.

Description

    Use this method to acquire an object in the Google drive.

See also:     ReleaseObject    

Discuss this help topic in SecureBlackbox Forum