C#C++F#VB
CloudQueue.::..PeekMessagesAsync Method (Int32, QueueRequestOptions, OperationContext)(Int32, QueueRequestOptions^, OperationContext^)(Int32, QueueRequestOptions, OperationContext)(Int32, QueueRequestOptions, OperationContext)
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, QueueRequestOptions options, OperationContext operationContext )
C++
public: [DoesServiceRequestAttribute] virtual Task<IEnumerable<CloudQueueMessage^>^>^ PeekMessagesAsync( int messageCount, QueueRequestOptions^ options, OperationContext^ operationContext )
[<DoesServiceRequestAttribute>] abstract PeekMessagesAsync : messageCount:int * options:QueueRequestOptions * operationContext:OperationContext -> Task<IEnumerable<CloudQueueMessage>> [<DoesServiceRequestAttribute>] override PeekMessagesAsync : messageCount:int * options:QueueRequestOptions * operationContext:OperationContext -> Task<IEnumerable<CloudQueueMessage>>
<DoesServiceRequestAttribute> Public Overridable Function PeekMessagesAsync ( messageCount As Integer, options As QueueRequestOptions, operationContext As OperationContext ) As Task(Of IEnumerable(Of CloudQueueMessage))
Parameters
- messageCount
-
Type:
System.Int32System::Int32System.Int32System.Int32
The number of messages to peek.
- options
-
Type:
Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue::QueueRequestOptions^Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue.QueueRequestOptions
A QueueRequestOptions object that specifies additional options for the request.
- operationContext
-
Type:
Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage::OperationContext^Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage.OperationContext
An OperationContext object that represents the context for the current operation.
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.