Skip to content

Commit c9dffc2

Browse files
committed
Improve wording on websocket status properties
1 parent b54ceea commit c9dffc2

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

src/WebSocketPipe/IWebSocketPipe.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,20 @@ namespace Devlooped.Net;
1313
public interface IWebSocketPipe : IDuplexPipe, IDisposable
1414
{
1515
/// <summary>
16-
/// Indicates the reason why the remote endpoint initiated the close handshake.
16+
/// Indicates the reason for the close handshake.
1717
/// </summary>
1818
public WebSocketCloseStatus? CloseStatus { get; }
19+
1920
/// <summary>
20-
/// Allows the remote endpoint to describe the reason why the connection was closed.
21+
/// Allows describing the reason why the connection was closed.
2122
/// </summary>
2223
public string? CloseStatusDescription { get; }
24+
2325
/// <summary>
24-
/// Returns the current state of the underlying WebSocket connection.
26+
/// Returns the current state of the underlying <see cref="WebSocket"/> connection.
2527
/// </summary>
2628
public WebSocketState State { get; }
29+
2730
/// <summary>
2831
/// Gets the subprotocol that was negotiated during the opening handshake.
2932
/// </summary>

0 commit comments

Comments
 (0)