Skip to content

Commit

Permalink
Update AsyncQueue.Enqueue doc
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott authored Jul 24, 2024
1 parent 09af24d commit 383d7b0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Microsoft.VisualStudio.Threading/AsyncQueue`1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ public void Complete()
/// Adds an element to the tail of the queue.
/// </summary>
/// <param name="value">The value to add.</param>
/// <exception cref="InvalidOperationException">Thrown if <see cref="Complete" /> has already been called. Use <see cref="TryEnqueue" /> to avoid an exception in this case.</exception>
public void Enqueue(T value)
{
if (!this.TryEnqueue(value))
Expand Down

0 comments on commit 383d7b0

Please sign in to comment.