Data.Cloud.AmazonAPI.TAmazonTableService.QueryTablesXML

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Unit: Data.Cloud.AmazonAPI
Parent: TAmazonTableService

Delphi

function QueryTablesXML(const ContinuationToken: string = ''; const MaxNumberOfTables: Integer = 0;
ResponseInfo: TCloudResponseInfo = nil): string;

C++

System::UnicodeString __fastcall QueryTablesXML(const System::UnicodeString ContinuationToken = System::UnicodeString(), const int MaxNumberOfTables = 0x0, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0));

Description

Returns an XML representation of the tables existing in the table service account.

ContinuationToken is used if there exist more than MaxNumberOfTables tables and if a previous call did not return the last of the tables, but provided a ContinuationToken in the NextToken XML element.

The server uses the default value of MaxNumberOfTables (100, the maximum) if you set it to a number equal to or less than zero.

The following table shows the significance of the parameters:

Parameter Description

ContinuationToken

The optional NextToken to continue table population from.

MaxNumberOfTables

The maximum number of tables to return.

ResponseInfo

The optional class for storing response info into.

See Also