C#C++F#VB
Initiates an asynchronous operation to peek messages from the queue.
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Syntax
[DoesServiceRequestAttribute] public virtual Task<IEnumerable<CloudQueueMessage>> PeekMessagesAsync( int messageCount )
C++
public: [DoesServiceRequestAttribute] virtual Task<IEnumerable<CloudQueueMessage^>^>^ PeekMessagesAsync( int messageCount )
[<DoesServiceRequestAttribute>] abstract PeekMessagesAsync : messageCount:int -> Task<IEnumerable<CloudQueueMessage>> [<DoesServiceRequestAttribute>] override PeekMessagesAsync : messageCount:int -> Task<IEnumerable<CloudQueueMessage>>
<DoesServiceRequestAttribute> Public Overridable Function PeekMessagesAsync ( messageCount As Integer ) As Task(Of IEnumerable(Of CloudQueueMessage))
Parameters
- messageCount
-
Type:
System.Int32System::Int32System.Int32System.Int32
The number of messages to peek.
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.