你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
CloudQueue.PeekMessagesAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
PeekMessagesAsync(Int32, QueueRequestOptions, OperationContext, CancellationToken) |
启动异步操作以从队列中查看消息。 |
PeekMessagesAsync(Int32, QueueRequestOptions, OperationContext) |
启动异步操作以从队列中查看消息。 |
PeekMessagesAsync(Int32) |
启动异步操作以从队列中查看消息。 |
PeekMessagesAsync(Int32, CancellationToken) |
启动异步操作以从队列中查看消息。 |
PeekMessagesAsync(Int32, QueueRequestOptions, OperationContext, CancellationToken)
启动异步操作以从队列中查看消息。
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync (int messageCount, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member PeekMessagesAsync : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.PeekMessagesAsync : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
Public Overridable Function PeekMessagesAsync (messageCount As Integer, options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of IEnumerable(Of CloudQueueMessage))
参数
- messageCount
- Int32
要查看的消息数。 一次可以检索的最大消息数为 32。
- options
- QueueRequestOptions
一个 QueueRequestOptions 对象,它指定请求的其他选项。
- operationContext
- OperationContext
一个 OperationContext 对象,它一个表示当前操作的上下文。
- cancellationToken
- CancellationToken
等待任务完成期间要观察的 CancellationToken。
返回
一个 Task<TResult> 对象,它是表示异步操作的类型的 CloudQueueMessage 可枚举集合。
- 属性
适用于
PeekMessagesAsync(Int32, QueueRequestOptions, OperationContext)
启动异步操作以从队列中查看消息。
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync (int messageCount, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member PeekMessagesAsync : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.PeekMessagesAsync : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
Public Overridable Function PeekMessagesAsync (messageCount As Integer, options As QueueRequestOptions, operationContext As OperationContext) As Task(Of IEnumerable(Of CloudQueueMessage))
参数
- messageCount
- Int32
要查看的消息数。 一次可以检索的最大消息数为 32。
- options
- QueueRequestOptions
一个 QueueRequestOptions 对象,它指定请求的其他选项。
- operationContext
- OperationContext
一个 OperationContext 对象,它一个表示当前操作的上下文。
返回
一个 Task<TResult> 对象,它是表示异步操作的类型的 CloudQueueMessage 可枚举集合。
- 属性
适用于
PeekMessagesAsync(Int32)
启动异步操作以从队列中查看消息。
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync (int messageCount);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member PeekMessagesAsync : int -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.PeekMessagesAsync : int -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
Public Overridable Function PeekMessagesAsync (messageCount As Integer) As Task(Of IEnumerable(Of CloudQueueMessage))
参数
- messageCount
- Int32
要查看的消息数。 一次可以检索的最大消息数为 32。
返回
一个 Task<TResult> 对象,它是表示异步操作的类型的 CloudQueueMessage 可枚举集合。
- 属性
适用于
PeekMessagesAsync(Int32, CancellationToken)
启动异步操作以从队列中查看消息。
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync (int messageCount, System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member PeekMessagesAsync : int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.PeekMessagesAsync : int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
Public Overridable Function PeekMessagesAsync (messageCount As Integer, cancellationToken As CancellationToken) As Task(Of IEnumerable(Of CloudQueueMessage))
参数
- messageCount
- Int32
要查看的消息数。 一次可以检索的最大消息数为 32。
- cancellationToken
- CancellationToken
等待任务完成期间要观察的 CancellationToken。
返回
一个 Task<TResult> 对象,它是表示异步操作的类型的 CloudQueueMessage 可枚举集合。
- 属性