File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,17 +13,20 @@ namespace Devlooped.Net;
1313public 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>
You can’t perform that action at this time.
0 commit comments