Skip to content

Commit 5027d6a

Browse files
committed
Update
1 parent d99627b commit 5027d6a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Servers/Connections.Abstractions/src/Features/IStreamAbortFeature.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
namespace Microsoft.AspNetCore.Connections.Features
55
{
66
/// <summary>
7-
/// Explicitly abort one direction of a connection stream.
7+
/// Supports aborting one side of a connection stream.
88
/// </summary>
99
public interface IStreamAbortFeature
1010
{
1111
/// <summary>
12-
/// Abort reading from the connection stream.
12+
/// Abort the read side of the connection stream.
1313
/// </summary>
14-
/// <param name="abortReason">An optional <see cref="ConnectionAbortedException"/> describing the reason to abort reading from the connection stream.</param>
14+
/// <param name="abortReason">An optional <see cref="ConnectionAbortedException"/> describing the reason to abort the read side of the connection stream.</param>
1515
void AbortRead(ConnectionAbortedException abortReason);
1616

1717
/// <summary>
18-
/// Abort writing to the connection stream.
18+
/// Abort the write side of the connection stream.
1919
/// </summary>
20-
/// <param name="abortReason">An optional <see cref="ConnectionAbortedException"/> describing the reason to abort writing to the connection stream.</param>
20+
/// <param name="abortReason">An optional <see cref="ConnectionAbortedException"/> describing the reason to abort the write side of the connection stream.</param>
2121
void AbortWrite(ConnectionAbortedException abortReason);
2222
}
2323
}

0 commit comments

Comments
 (0)