QueueClient.PeekBatchAsync Method

Definition

Overloads

PeekBatchAsync(Int32)

Asynchronously peeks a batch of message.

PeekBatchAsync(Int64, Int32)

Asynchronously peeks a batch of message.

PeekBatchAsync(Int32)

Asynchronously peeks a batch of message.

public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.BrokeredMessage>> PeekBatchAsync (int messageCount);
abstract member PeekBatchAsync : int -> System.Threading.Tasks.Task<seq<Microsoft.ServiceBus.Messaging.BrokeredMessage>>
override this.PeekBatchAsync : int -> System.Threading.Tasks.Task<seq<Microsoft.ServiceBus.Messaging.BrokeredMessage>>
Public Function PeekBatchAsync (messageCount As Integer) As Task(Of IEnumerable(Of BrokeredMessage))

Parameters

messageCount
Int32

The number of message.

Returns

The asynchronous operation.

Applies to

PeekBatchAsync(Int64, Int32)

Asynchronously peeks a batch of message.

public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.BrokeredMessage>> PeekBatchAsync (long fromSequenceNumber, int messageCount);
abstract member PeekBatchAsync : int64 * int -> System.Threading.Tasks.Task<seq<Microsoft.ServiceBus.Messaging.BrokeredMessage>>
override this.PeekBatchAsync : int64 * int -> System.Threading.Tasks.Task<seq<Microsoft.ServiceBus.Messaging.BrokeredMessage>>
Public Function PeekBatchAsync (fromSequenceNumber As Long, messageCount As Integer) As Task(Of IEnumerable(Of BrokeredMessage))

Parameters

fromSequenceNumber
Int64

The sequence number from where to peek a batch of message.

messageCount
Int32

The number of message.

Returns

The asynchronous operation.

Applies to