Discuss this help topic in SecureBlackbox Forum

TElGoogleDriveDataStorage.ListTrashed

TElGoogleDriveDataStorage     See also     


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


Lists the trashed objects located in the folder.

Declaration

[C#]
    void ListTrashed(TElDataStorageObjectList Objects);
    void ListTrashed(TElGoogleDriveFolder Parent, TElDataStorageObjectList Objects);

[VB.NET]
    Sub ListTrashed(ByVal Objects As TElDataStorageObjectList)
    Sub ListTrashed(ByVal Parent As TElGoogleDriveFolder, ByVal Objects As TElDataStorageObjectList)

[Pascal]
    procedure ListTrashed(Objects: TElDataStorageObjectList);
    procedure ListTrashed(Parent: TElGoogleDriveFolder; Objects: TElDataStorageObjectList);

[C++]
    void ListTrashed(TElDataStorageObjectList &Objects);
    void ListTrashed(TElDataStorageObjectList *Objects);
    void ListTrashed(TElGoogleDriveFolder &Parent, TElDataStorageObjectList &Objects);
    void ListTrashed(TElGoogleDriveFolder *Parent, TElDataStorageObjectList *Objects);

[PHP]
    void ListTrashed(TElDataStorageObjectList $Objects)
    void ListTrashed(TElGoogleDriveFolder $Parent, TElDataStorageObjectList $Objects)

[Java]
    void listTrashed(TElDataStorageObjectList Objects);
    void listTrashed(TElGoogleDriveFolder Parent, TElDataStorageObjectList Objects);

Parameters

  • Parent - folder which entries should be listed. If not specified (nil/null/Nothing), the objects are listed for the entire storage.
  • Objects - contains the queried objects.

Description

    Use this method to list all the trashed objects located in the specified folder. If no folder specified, the method lists all the trashed objects located in the remote storage.

See also:     List     ListFolders     Search    

Discuss this help topic in SecureBlackbox Forum