MessageReceiver.PeekBatch 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
PeekBatch(Int32) |
Reads the next batch of message without changing the state of the receiver or the message source. |
PeekBatch(Int64, Int32) |
Reads the next batch of message without changing the state of the receiver or the message source. |
PeekBatch(Int32)
Reads the next batch of message without changing the state of the receiver or the message source.
public System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.BrokeredMessage> PeekBatch (int messageCount);
abstract member PeekBatch : int -> seq<Microsoft.ServiceBus.Messaging.BrokeredMessage>
override this.PeekBatch : int -> seq<Microsoft.ServiceBus.Messaging.BrokeredMessage>
Public Function PeekBatch (messageCount As Integer) As IEnumerable(Of BrokeredMessage)
Parameters
- messageCount
- Int32
The number of message.
Returns
The batch of message to be read.
Applies to
PeekBatch(Int64, Int32)
Reads the next batch of message without changing the state of the receiver or the message source.
public System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.BrokeredMessage> PeekBatch (long fromSequenceNumber, int messageCount);
abstract member PeekBatch : int64 * int -> seq<Microsoft.ServiceBus.Messaging.BrokeredMessage>
override this.PeekBatch : int64 * int -> seq<Microsoft.ServiceBus.Messaging.BrokeredMessage>
Public Function PeekBatch (fromSequenceNumber As Long, messageCount As Integer) As IEnumerable(Of BrokeredMessage)
Parameters
- fromSequenceNumber
- Int64
The sequence number from where to read a batch message.
- messageCount
- Int32
The number of message.
Returns
The batch of message to be read.
Applies to
Azure SDK for .NET