From 383d7b071f1bd23b3c2b3be2f9e12aacd4f54dd1 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Wed, 24 Jul 2024 08:58:10 -0600 Subject: [PATCH] Update AsyncQueue.Enqueue doc --- src/Microsoft.VisualStudio.Threading/AsyncQueue`1.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Microsoft.VisualStudio.Threading/AsyncQueue`1.cs b/src/Microsoft.VisualStudio.Threading/AsyncQueue`1.cs index 324aa3268..10c7624ba 100644 --- a/src/Microsoft.VisualStudio.Threading/AsyncQueue`1.cs +++ b/src/Microsoft.VisualStudio.Threading/AsyncQueue`1.cs @@ -161,6 +161,7 @@ public void Complete() /// Adds an element to the tail of the queue. /// /// The value to add. + /// Thrown if has already been called. Use to avoid an exception in this case. public void Enqueue(T value) { if (!this.TryEnqueue(value))