This topic has not yet been rated - Rate this topic

MessageQueue.LastModifyTime Property

Gets the last time the properties of a queue were modified.

Namespace:  System.Messaging
Assembly:  System.Messaging (in System.Messaging.dll)
[MessagingDescriptionAttribute("MQ_LastModifyTime")]
public DateTime LastModifyTime { get; }

Property Value

Type: System.DateTime
A DateTime that indicates when the queue properties were last modified.
ExceptionCondition
MessageQueueException

An error occurred when accessing a Message Queuing method.

The last modification time includes when the queue was created and any MessageQueue property that modifies the Message Queuing queue, such as BasePriority. The value of the LastModifyTime property represents the system time of the local computer.

You must call Refresh before getting the LastModifyTime property; otherwise, the modification time associated with this MessageQueue might not be current.

The following table shows whether this property is available in various Workgroup modes.

Workgroup mode

Available

Local computer

Yes

Local computer and direct format name

Yes

Remote computer

No

Remote computer and direct format name

No

The following code example displays the value of a message queue's LastModifyTime property.

// Display the value of the queue's LastModifyTime property.
Console.WriteLine("MessageQueue.LastModifyTime: {0}", queue.LastModifyTime);

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
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.