Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorageBucket.List

TElAWSS3DataStorageBucket     


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


Lists the keys contained in the bucket.

Declaration

[C#]
    void List(TElDataStorageObjectList Objects);
    void List(TElDataStorageObjectList Objects, string Prefix, string Delimiter, int MaxCount, TElStringList Prefixes, TElStringList Headers);
    String[] List();
    String[] List(string Prefix, int MaxCount);

[VB.NET]
    Sub List(ByVal Objects As TElDataStorageObjectList)
    Sub List(ByVal Objects As TElDataStorageObjectList, ByVal Prefix As String, ByVal Delimiter As String, ByVal MaxCount As Integer, ByVal Prefixes As TElStringList, ByVal Headers As TElStringList)
    Function List() As String[]
    Function List(ByVal Prefix As String, ByVal MaxCount As Integer) 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, TElStringList &Prefixes, TElStringList &Headers);
    void List(TElDataStorageObjectList *Objects, const std::string &Prefix, const std::string &Delimiter, int32_t MaxCount, TElStringList *Prefixes, TElStringList *Headers);

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

[Java]
    String[] list();
    void list(TElDataStorageObjectList Objects, String Prefix, String Delimiter, int MaxCount, TElStringList Prefixes, TElStringList Headers);
    void list(TElDataStorageObjectList Objects);
    String[] list(String Prefix, int MaxCount);

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