Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Deletes the message.

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

Syntax

 
public virtual Task DeleteMessageAsync(
	string messageId,
	string popReceipt
)
 
public:
virtual Task^ DeleteMessageAsync(
	String^ messageId,
	String^ popReceipt
)
 
abstract DeleteMessageAsync : 
        messageId:string *
        popReceipt:string -> Task
override DeleteMessageAsync : 
        messageId:string *
        popReceipt:string -> Task
 
Public Overridable Function DeleteMessageAsync (
	messageId As String,
	popReceipt As String
) As Task

Parameters

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

The message ID.

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

The pop receipt value.

Return to top