PeekCompletedEventArgs.Message Property

Definition

Gets the message associated with the asynchronous peek operation.

public:
 property System::Messaging::Message ^ Message { System::Messaging::Message ^ get(); };
public System.Messaging.Message Message { get; }
member this.Message : System.Messaging.Message
Public ReadOnly Property Message As Message

Property Value

A Message that represents the end result of the asynchronous peek operation.

Exceptions

The Message could not be retrieved. The time-out on the asynchronous operation might have expired.

Remarks

The Message property provides a means for retrieving the message that initiated the end of the asynchronous peek operation.

MessageQueue.EndPeek is called the first time the Message property is read, so it is not necessary to call EndPeek prior to getting the value of this property.

Applies to

See also