ReceiveCompletedEventArgs.Message Property

Definition

Gets the message associated with the asynchronous receive 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 receive 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 receive operation.

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

Applies to