MessagePropertyFilter.ArrivedTime Property

Definition

Gets or sets a value that indicates whether to retrieve ArrivedTime property information when receiving or peeking a message.

public:
 property bool ArrivedTime { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgArrivedTime")]
public bool ArrivedTime { get; set; }
[<System.Messaging.MessagingDescription("MsgArrivedTime")>]
member this.ArrivedTime : bool with get, set
Public Property ArrivedTime As Boolean

Property Value

true to receive ArrivedTime information; otherwise, false. The default is false.

Attributes

Examples

The following code example demonstrates the use of the ArrivedTime property.

// Set the queue's MessageReadPropertyFilter property 
// to enable the message's ArrivedTime property.
queue->MessageReadPropertyFilter->ArrivedTime = true;

// Peek at the message. Time out after ten seconds 
// in case the message was not delivered.
orderMessage = queue->Peek(TimeSpan::FromSeconds(10.0));

// Display the value of the message's 
// ArrivedTime property.
Console::WriteLine("Message.ArrivedTime: {0}", 
    orderMessage->ArrivedTime);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's ArrivedTime property.
queue.MessageReadPropertyFilter.ArrivedTime = true;

// Peek at the message. Time out after ten seconds in case the message
// was not delivered.
orderMessage = queue.Peek(TimeSpan.FromSeconds(10.0));

// Display the value of the message's ArrivedTime property.
Console.WriteLine("Message.ArrivedTime: {0}",
    orderMessage.ArrivedTime);

Remarks

The ArrivedTime property of the Message class indicates when the message arrived at the destination queue. This is local time, adjusted from GMT, of the computer on which the message is retrieved.

Applies to

See also