IMessageReceiver.PeekBySequenceNumberAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
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>
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.
Applies to
PeekBySequenceNumberAsync(Int64, Int32)
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>>
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
Returns
A batch of messages peeked.
Applies to
Azure SDK for .NET