DSAzure.TAzureQueueService.GetMessageId

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetMessageId(const QueueMessage: String): String;

C++

System::UnicodeString __fastcall GetMessageId(const System::UnicodeString QueueMessage);

Properties

Type Visibility Source Unit Parent
function public
DSAzure.pas
DSAzure.hpp
DSAzure TAzureQueueService

Description

Parses a message ID from a given XML string.

GetMessageId takes in an XML string representation of a queue message, and then parses and returns the MessageId value from within the XML. This is a convenience function; you can instead opt to parse the XML yourself. QueueMessage should be an XML, as it is returned from a function such as PeekMessages.

See Also