Skip to content

Commit 5eef2f5

Browse files
authored
Document System.IO.Pipelines.FlushResult (#3496)
* Document System.IO.Pipelines.FlushResult * suggestions by halter73 and mairaw Co-Authored-By: Maira Wenzel <[email protected]> * suggestions by anurse and halter73 Co-Authored-By: Andrew Stanton-Nurse <[email protected]> * build warning fix
1 parent 8d5e275 commit 5eef2f5

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

xml/System.IO.Pipelines/FlushResult.xml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
<Parameter Name="isCompleted" Type="System.Boolean" />
4040
</Parameters>
4141
<Docs>
42-
<param name="isCanceled">To be added.</param>
43-
<param name="isCompleted">To be added.</param>
44-
<summary>Creates a new instance of <see cref="T:System.IO.Pipelines.FlushResult" /> setting <see cref="P:System.IO.Pipelines.FlushResult.IsCanceled" /> and <see cref="P:System.IO.Pipelines.FlushResult.IsCompleted" /> flags.</summary>
42+
<param name="isCanceled"><see langword="true" /> to indicate the current <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation that produced this <see cref="T:System.IO.Pipelines.FlushResult" /> was canceled by <see cref="M:System.IO.Pipelines.PipeWriter.CancelPendingFlush" />; otherwise, <see langword="false" />.</param>
43+
<param name="isCompleted"><see langword="true" /> to indicate the reader is no longer reading data written to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</param>
44+
<summary>Initializes a new instance of <see cref="T:System.IO.Pipelines.FlushResult" /> struct setting the <see cref="P:System.IO.Pipelines.FlushResult.IsCanceled" /> and <see cref="P:System.IO.Pipelines.FlushResult.IsCompleted" /> flags.</summary>
4545
<remarks>To be added.</remarks>
4646
</Docs>
4747
</Member>
@@ -63,9 +63,8 @@
6363
<ReturnType>System.Boolean</ReturnType>
6464
</ReturnValue>
6565
<Docs>
66-
<summary>
67-
<see langword="true" /> if the current <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation was canceled; otherwise, <see langword="false" />.</summary>
68-
<value>To be added.</value>
66+
<summary>Gets a value that indicates whether the current <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation was canceled.</summary>
67+
<value><see langword="true" /> if the current <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> operation was canceled; otherwise, <see langword="false" />.</value>
6968
<remarks>To be added.</remarks>
7069
</Docs>
7170
</Member>
@@ -87,9 +86,8 @@
8786
<ReturnType>System.Boolean</ReturnType>
8887
</ReturnValue>
8988
<Docs>
90-
<summary>
91-
<see langword="true" /> if the <see cref="T:System.IO.Pipelines.PipeWriter" /> is complete; otherwise, <see langword="false" />.</summary>
92-
<value>To be added.</value>
89+
<summary>Gets a value that indicates the reader is no longer reading data written to the <see cref="T:System.IO.Pipelines.PipeWriter" />.</summary>
90+
<value><see langword="true" /> if the reader is no longer reading data written to the <see cref="T:System.IO.Pipelines.PipeWriter" />; otherwise, <see langword="false" />.</value>
9391
<remarks>To be added.</remarks>
9492
</Docs>
9593
</Member>

0 commit comments

Comments
 (0)