MessageQueue.InfiniteQueueSize Feld

Definition

Legt fest, dass für eine Warteschlange keine Größenbeschränkung besteht.

public: static initonly long InfiniteQueueSize;
public static readonly long InfiniteQueueSize;
 staticval mutable InfiniteQueueSize : int64
Public Shared ReadOnly InfiniteQueueSize As Long 

Feldwert

Beispiele

Im folgenden Codebeispiel wird die Verwendung des InfiniteQueueSize Members veranschaulicht.

// 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());

Hinweise

Dieser Member wird häufig verwendet, wenn oder MaximumQueueSizefestgelegt MaximumJournalSize wird.

Gilt für:

Weitere Informationen