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
Vertu í samstarfi við okkur á GitHub
Heimildina fyrir þetta efni er að finna á GitHub, þar sem þú getur líka búið til og farið yfir vandamál og sameinað beiðnir. Frekari upplýsingar er að finna í framlagshandbók okkar.