Deletes the message.
Namespace: Microsoft.WindowsAzure.Storage.Queue
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As CloudQueue
Dim messageId As String
Dim popReceipt As String
Dim returnValue As IAsyncAction
returnValue = instance.DeleteMessageAsync(messageId, popReceipt) |
Syntax
Visual Basic |
---|
Public Function DeleteMessageAsync ( _
messageId As String, _
popReceipt As String _
) As IAsyncAction |
C# |
---|
public IAsyncAction DeleteMessageAsync (
string messageId,
string popReceipt
) |
C++ |
---|
public:
IAsyncAction^ DeleteMessageAsync (
String^ messageId,
String^ popReceipt
) |
J# |
---|
public IAsyncAction DeleteMessageAsync (
String messageId,
String popReceipt
) |
JScript |
---|
public function DeleteMessageAsync (
messageId : String,
popReceipt : String
) : IAsyncAction |
Parameters
- messageId
The message ID.
- popReceipt
The pop receipt value.
Return Value
An
IAsyncAction that represents an asynchronous action.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also