MessageReceiver.Peek Method

Definition

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