Message.ArrivedTime Property
.NET Framework 2.0
Gets the time that the message arrived in the destination queue.
Namespace: System.Messaging
Assembly: System.Messaging (in system.messaging.dll)
Assembly: System.Messaging (in system.messaging.dll)
/** @property */ public DateTime get_ArrivedTime ()
public function get ArrivedTime () : DateTime
Property Value
A DateTime that represents the message's arrival time in the destination queue. The time is adjusted from GMT to the local time of the computer on which the destination queue resides.The message's TimeToBeReceived property indicates how quickly the message must be received from the destination queue. The TimeToBeReceived property timer starts when the message is sent, not when the message arrives in the queue.
The following code example displays the value of a message's ArrivedTime property.
// Display the value of the message's ArrivedTime property. // To view this property value, the queue's // MessageReadPropertyFilter.ArrivedTime property must be set to // true before the message is received. Console.WriteLine("Time arrived in destination queue: {0}", orderMessage.ArrivedTime.ToString());
// Display the value of the message's ArrivedTime property.
// To view this property value, the queue's
// MessageReadPropertyFilter.ArrivedTime property must be set to
// true before the message is received.
Console.WriteLine("Time arrived in destination queue: {0}",
System.Convert.ToString(orderMessage.get_ArrivedTime()));
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.