C#C++F#VB
Initiates an asynchronous operation to get messages from the queue.
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Syntax
[DoesServiceRequestAttribute] public virtual Task<IEnumerable<CloudQueueMessage>> GetMessagesAsync( int messageCount )
C++
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 Value
Type: System.Threading.Tasks.Task<IEnumerable<CloudQueueMessage>>System.Threading.Tasks::Task<IEnumerable<CloudQueueMessage^>^>^System.Threading.Tasks.Task<IEnumerable<CloudQueueMessage>>System.Threading.Tasks.Task(Of IEnumerable(Of CloudQueueMessage))A Task<TResult><TResult><'TResult>(Of TResult) object that is an enumerable collection of type CloudQueueMessage that represents the asynchronous operation.