MessageQueue.InfiniteQueueSize Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies that no size restriction exists for a queue.
public: static initonly long InfiniteQueueSize;
public static readonly long InfiniteQueueSize;
staticval mutable InfiniteQueueSize : int64
Public Shared ReadOnly InfiniteQueueSize As Long
Field Value
Examples
The following code example demonstrates the use of the InfiniteQueueSize member.
// Set the queue's MaximumQueueSize property to
// MessageQueue.InfiniteQueueSize.
queue.MaximumQueueSize = MessageQueue.InfiniteQueueSize;
// Display the new value of the queue's MaximumQueueSize property.
Console.WriteLine("MessageQueue.MaximumQueueSize: {0}",
queue.MaximumQueueSize.ToString());
Remarks
This member is frequently used when setting MaximumJournalSize or MaximumQueueSize.
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.