Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Initializes a new instance of the CloudQueueMessage class with the given message ID and pop receipt.

Namespace:   Microsoft.WindowsAzure.Storage.Queue
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public CloudQueueMessage(
	string messageId,
	string popReceipt
)
 
public:
CloudQueueMessage(
	String^ messageId,
	String^ popReceipt
)
 
new : 
        messageId:string *
        popReceipt:string -> CloudQueueMessage
 
Public Sub New (
	messageId As String,
	popReceipt As String
)

Parameters

messageId
Type: System.StringSystem::String^System.StringSystem.String

A string specifying the message ID.

popReceipt
Type: System.StringSystem::String^System.StringSystem.String

A string containing the pop receipt token.

Return to top