MessageReceiver.Peek 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
Peek() |
Reads the next message without changing the state of the receiver or the message source. |
Peek(Int64) |
Reads the next message without changing the state of the receiver or the message source. |
Peek()
Reads the next message without changing the state of the receiver or the message source.
public Microsoft.ServiceBus.Messaging.BrokeredMessage Peek ();
abstract member Peek : unit -> Microsoft.ServiceBus.Messaging.BrokeredMessage
override this.Peek : unit -> Microsoft.ServiceBus.Messaging.BrokeredMessage
Public Function Peek () As BrokeredMessage
Returns
The BrokeredMessage that represents the next message to be read.
Applies to
Peek(Int64)
Reads the next message without changing the state of the receiver or the message source.
public Microsoft.ServiceBus.Messaging.BrokeredMessage Peek (long fromSequenceNumber);
abstract member Peek : int64 -> Microsoft.ServiceBus.Messaging.BrokeredMessage
override this.Peek : int64 -> Microsoft.ServiceBus.Messaging.BrokeredMessage
Public Function Peek (fromSequenceNumber As Long) As BrokeredMessage
Parameters
- fromSequenceNumber
- Int64
The sequence number from where to read the message.
Returns
The BrokeredMessage that represents the next message to be read.
Applies to
Azure SDK for .NET