MessageReceiver.PeekBySequenceNumberAsync Method

Definition

Overloads

PeekBySequenceNumberAsync(Int64)

Asynchronously reads the next message without changing the state of the receiver or the message source.

PeekBySequenceNumberAsync(Int64, Int32)

Peeks a batch of messages.

PeekBySequenceNumberAsync(Int64)

Source:
MessageReceiver.cs

Asynchronously reads the next message without changing the state of the receiver or the message source.

public System.Threading.Tasks.Task<Microsoft.Azure.ServiceBus.Message> PeekBySequenceNumberAsync (long fromSequenceNumber);
abstract member PeekBySequenceNumberAsync : int64 -> System.Threading.Tasks.Task<Microsoft.Azure.ServiceBus.Message>
override this.PeekBySequenceNumberAsync : int64 -> System.Threading.Tasks.Task<Microsoft.Azure.ServiceBus.Message>
Public Function PeekBySequenceNumberAsync (fromSequenceNumber As Long) As Task(Of Message)

Parameters

fromSequenceNumber
Int64

The sequence number from where to read the message.

Returns

The asynchronous operation that returns the Message that represents the next message to be read.

Implements

Applies to

PeekBySequenceNumberAsync(Int64, Int32)

Source:
MessageReceiver.cs

Peeks a batch of messages.

public System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Azure.ServiceBus.Message>> PeekBySequenceNumberAsync (long fromSequenceNumber, int messageCount);
abstract member PeekBySequenceNumberAsync : int64 * int -> System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Azure.ServiceBus.Message>>
override this.PeekBySequenceNumberAsync : int64 * int -> System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Azure.ServiceBus.Message>>
Public Function PeekBySequenceNumberAsync (fromSequenceNumber As Long, messageCount As Integer) As Task(Of IList(Of Message))

Parameters

fromSequenceNumber
Int64

The starting point from which to browse a batch of messages.

messageCount
Int32

The number of messages to retrieve.

Returns

A batch of messages peeked.

Implements

Applies to