Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Peeks a single message from the queue.

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

Syntax

 
public virtual Task<CloudQueueMessage> PeekMessageAsync(
	QueueRequestOptions options,
	OperationContext operationContext
)
 
public:
virtual Task<CloudQueueMessage^>^ PeekMessageAsync(
	QueueRequestOptions^ options,
	OperationContext^ operationContext
)
 
abstract PeekMessageAsync : 
        options:QueueRequestOptions *
        operationContext:OperationContext -> Task<CloudQueueMessage>
override PeekMessageAsync : 
        options:QueueRequestOptions *
        operationContext:OperationContext -> Task<CloudQueueMessage>
 
Public Overridable Function PeekMessageAsync (
	options As QueueRequestOptions,
	operationContext As OperationContext
) As Task(Of CloudQueueMessage)
Return to top