Discuss this help topic in SecureBlackbox Forum

TElWinAzureDataStorageContainer.ListNext

TElWinAzureDataStorageContainer     See also     


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


Retrieves next portion of blobs from the server.

Declaration

[VB.NET]
    Sub ListNext(ByVal State As TElWinAzureDataStorageListState, ByVal Objects As TElDataStorageObjectList)
    Sub ListNext(ByVal State As TElWinAzureDataStorageListState, ByVal Objects As TElDataStorageObjectList, ByVal MaxCount As Integer)
    Function ListNext(ByVal State As TElWinAzureDataStorageListState) As String[]
    Function ListNext(ByVal State As TElWinAzureDataStorageListState, ByVal MaxCount As Integer) As String[]

[Pascal]
    procedure ListNext(State : TElWinAzureDataStorageListState; Objects : TElDataStorageObjectList);
    procedure ListNext(State : TElWinAzureDataStorageListState; Objects : TElDataStorageObjectList; MaxCount : integer);

Parameters

  • State - the object that specifies the state of the request.
  • Objects - this parameter contains the return value, the list of objects in the container.
  • MaxCount - specifies maximum number of blobs in the response.

Return value

    List of data objects (blobs) in the container.

Description

    Call this method after ListInit to obtain next portion of the requested blobs from the server. To finalize the LIST request, call ListFinal method.

See also:     ListInit     ListFinal    

Discuss this help topic in SecureBlackbox Forum