Data.Cloud.AzureAPI.TAzureTableService.QueryEntityXML

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function QueryEntityXML(const TableName: string; const PartitionKey: string; const RowKey: string;
ResponseInfo: TCloudResponseInfo = nil): string; overload;

C++

System::UnicodeString __fastcall QueryEntityXML(const System::UnicodeString TableName, const System::UnicodeString PartitionKey, const System::UnicodeString RowKey, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0))/* overload */;

Properties

Type Visibility Source Unit Parent
function public
Data.Cloud.AzureAPI.pas
Data.Cloud.AzureAPI.hpp
Data.Cloud.AzureAPI TAzureTableService

Description

Returns the XML representation of the entity (row) for the specified table with the given partition and row keys.

The QueryEntityXML method returns the XML representation of the entity (row) for the specified table with the given partition and row keys.

Note: The unique key of any Azure table row is comprised of both PartitionKey and RowKey. There should be no situation where a call to this function returns more than one row.

The TableName parameter specifies the name of the table to get the row from.

The PartitionKey parameter specifies the value of the partition key in the row you want to get.

The RowKey parameter specifies the value of the row key in the row you want to get.

The ResponseInfo parameter specifies the optional class where to store response info.

See Also