Skip to content

Commit

Permalink
Fix PipeWriter.AsStream(bool) xmldoc (#112669)
Browse files Browse the repository at this point in the history
  • Loading branch information
austindrenski authored Feb 19, 2025
1 parent d6b6298 commit 440a283
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public virtual void OnReaderCompleted(Action<Exception?, object?> callback, obje
public abstract Span<byte> GetSpan(int sizeHint = 0);

/// <summary>Returns a <see cref="System.IO.Stream" /> representation of the <see cref="System.IO.Pipelines.PipeWriter" />.</summary>
/// <param name="leaveOpen">An optional flag that indicates whether disposing the returned <see cref="System.IO.Stream" /> leaves <see cref="System.IO.Pipelines.PipeReader" /> open (<see langword="true" />) or completes <see cref="System.IO.Pipelines.PipeReader" /> (<see langword="false" />).</param>
/// <param name="leaveOpen">An optional flag that indicates whether disposing the returned <see cref="System.IO.Stream" /> leaves <see cref="System.IO.Pipelines.PipeWriter" /> open (<see langword="true" />) or completes <see cref="System.IO.Pipelines.PipeWriter" /> (<see langword="false" />).</param>
/// <returns>A stream that represents the <see cref="System.IO.Pipelines.PipeWriter" />.</returns>
public virtual Stream AsStream(bool leaveOpen = false)
{
Expand Down

0 comments on commit 440a283

Please sign in to comment.