diff --git a/websocket-sharp/Server/IWebSocketSession.cs b/websocket-sharp/Server/IWebSocketSession.cs index 7d143b14..9e06561e 100644 --- a/websocket-sharp/Server/IWebSocketSession.cs +++ b/websocket-sharp/Server/IWebSocketSession.cs @@ -36,6 +36,8 @@ namespace WebSocketSharp.Server /// public interface IWebSocketSession { + #region Properties + /// /// Gets the WebSocket connection request information. /// @@ -78,5 +80,7 @@ namespace WebSocketSharp.Server /// the WebSocket connection. /// WebSocketState State { get; } + + #endregion } }