MessageQueue.MaximumJournalSize Property
Assembly: System.Messaging (in system.messaging.dll)
/** @property */ public long get_MaximumJournalSize () /** @property */ public void set_MaximumJournalSize (long value)
public function get MaximumJournalSize () : long public function set MaximumJournalSize (value : long)
Property Value
The maximum size, in kilobytes, of the journal queue. The Message Queuing default specifies that no limit exists.MaximumJournalSize provides access to the Message Queuing journal storage limit. It is relevant only when UseJournalQueue is true. Setting this property modifies the Message Queuing queue. Therefore, any other MessageQueue instances are affected by the change
If you store messages in a journal or dead-letter queue, you should periodically clear the queue to remove messages that are no longer needed. Messages in such a queue count toward the message quota for the computer where the queue resides. (The administrator sets the computer quota.)
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 gets and sets the value of a message queue's MaximumJournalSize property.
// Set the queue's MaximumJournalSize property value. queue.MaximumJournalSize = 10; // Display the new value of the queue's MaximumJournalSize property. Console.WriteLine("MessageQueue.MaximumJournalSize: {0}", queue.MaximumJournalSize);
// Set the queue's MaximumJournalSize property value.
queue.set_MaximumJournalSize(10);
// Display the new value of the queue's MaximumJournalSize property.
Console.WriteLine("MessageQueue.MaximumJournalSize: {0}",
System.Convert.ToString(queue.get_MaximumJournalSize()));
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.