Gets the date and time on the sending computer that the message was sent by the source queue manager.
Namespace:
System.Messaging
Assembly:
System.Messaging (in System.Messaging.dll)
Visual Basic (Declaration)
<MessagingDescriptionAttribute("MsgSentTime")> _
Public ReadOnly Property SentTime As DateTime
Dim instance As Message
Dim value As DateTime
value = instance.SentTime
[MessagingDescriptionAttribute("MsgSentTime")]
public DateTime SentTime { get; }
[MessagingDescriptionAttribute(L"MsgSentTime")]
public:
property DateTime SentTime {
DateTime get ();
}
public function get SentTime () : DateTime
| Exception | Condition |
|---|
| InvalidOperationException | The message has not been sent. This property can only be read on messages retrieved from a queue. -or- The message queue is filtered to ignore the SentTime property. |
The SentTime property is adjusted to the local time of the computer on which this instance of the Message class was created. This time zone could be different from those of the source and destination queues.
The following code example displays the value of a message's SentTime property.
// Display the value of the message's SentTime property.
// To view this property value, the queue's
// MessageReadPropertyFilter.SentTime property must be set to
// true before the message is received.
Console.WriteLine("Time sent from source queue: {0}",
orderMessage.SentTime.ToString());
// Display the value of the message's SentTime property.
// To view this property value, the queue's
// MessageReadPropertyFilter.SentTime property must be set to
// true before the message is received.
Console::WriteLine("Time sent from source queue: {0}",
orderMessage->SentTime.ToString());
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
.NET Compact Framework
Supported in: 3.5, 2.0
Reference