Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorageBucket.List

TElAWSS3DataStorageBucket     


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


Lists the keys contained in the bucket.

Declaration

[C#/Java]
    void List(TElDataStorageObjectList Objects);
    string[] List();

[VB.NET]
    Sub List(ByVal Objects As TElDataStorageObjectList)
    Function List() As String()

[Pascal]
    procedure List(Objects : TElDataStorageObjectList);

[C++]
    void List(TElDataStorageObjectList &Objects);
    void List(TElDataStorageObjectList *Objects);
    void List(TElDataStorageObjectList &Objects, const std::string &Prefix, const std::string &Delimiter, int32_t MaxCount, TStringList &Prefixes, TStringList &Headers);
    void List(TElDataStorageObjectList *Objects, const std::string &Prefix, const std::string &Delimiter, int32_t MaxCount, TStringList *Prefixes, TStringList *Headers);

[PHP]
    void List(TElDataStorageObjectList $Objects)
    void List(TElDataStorageObjectList $Objects, string $Prefix, string $Delimiter, integer $MaxCount, TStringList $Prefixes, TStringList $Headers)

Parameters

  • Objects - list of the objects in the bucket
  • Prefix - ...
  • Delimiter - ...
  • MaxCount - ...
  • Prefixes - ...
  • Headers - ...

Return value

    List of the keys in the data bucket.

Description

    Use this method to get a list of keys (objects) contained in the bucket.

Discuss this help topic in SecureBlackbox Forum