C#C++F#VB
CloudQueue.::..GetMessageAsync Method (CancellationToken)(CancellationToken)(CancellationToken)(CancellationToken)
Initiates an asynchronous operation to get a single message from the queue.
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Syntax
[DoesServiceRequestAttribute] public virtual Task<CloudQueueMessage> GetMessageAsync( CancellationToken cancellationToken )
C++
public: [DoesServiceRequestAttribute] virtual Task<CloudQueueMessage^>^ GetMessageAsync( CancellationToken cancellationToken )
[<DoesServiceRequestAttribute>] abstract GetMessageAsync : cancellationToken:CancellationToken -> Task<CloudQueueMessage> [<DoesServiceRequestAttribute>] override GetMessageAsync : cancellationToken:CancellationToken -> Task<CloudQueueMessage>
<DoesServiceRequestAttribute> Public Overridable Function GetMessageAsync ( cancellationToken As CancellationToken ) As Task(Of CloudQueueMessage)
Parameters
- cancellationToken
-
Type:
System.Threading.CancellationTokenSystem.Threading::CancellationTokenSystem.Threading.CancellationTokenSystem.Threading.CancellationToken
A CancellationToken to observe while waiting for a task to complete.
Return Value
Type: System.Threading.Tasks.Task<CloudQueueMessage>System.Threading.Tasks::Task<CloudQueueMessage^>^System.Threading.Tasks.Task<CloudQueueMessage>System.Threading.Tasks.Task(Of CloudQueueMessage)A Task<TResult><TResult><'TResult>(Of TResult) object of type CloudQueueMessage that represents the asynchronous operation.