Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

CloudQueue.GetMessagesAsync Method (Int32) (Microsoft.WindowsAzure.Storage.Queue)

Initiates an asynchronous operation to get messages from the queue.

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

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task<IEnumerable<CloudQueueMessage>> GetMessagesAsync(
	int messageCount
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<IEnumerable<CloudQueueMessage^>^>^ GetMessagesAsync(
	int messageCount
)
 
[<DoesServiceRequestAttribute>]
abstract GetMessagesAsync : 
        messageCount:int -> Task<IEnumerable<CloudQueueMessage>>
[<DoesServiceRequestAttribute>]
override GetMessagesAsync : 
        messageCount:int -> Task<IEnumerable<CloudQueueMessage>>
 
<DoesServiceRequestAttribute>
Public Overridable Function GetMessagesAsync (
	messageCount As Integer
) As Task(Of IEnumerable(Of CloudQueueMessage))

Parameters

messageCount
Type: System.Int32System::Int32System.Int32System.Int32

The number of messages to retrieve.

Return to top