From 1d481097a42e84414dae678223ad27f0e7fd4aea Mon Sep 17 00:00:00 2001 From: Blank Date: Thu, 6 Aug 2026 00:33:41 +0800 Subject: [PATCH] =?UTF-8?q?feat(websocket-server):=20=E5=85=AC=E5=BC=80=20?= =?UTF-8?q?IWebSocketCommandMiddleware=20=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 同步上游 2f415853,将 IWebSocketCommandMiddleware 由 internal 改为 public,便于外部扩展、测试替换与集成场景;补 XML summary 避免文档警告。 Linear: GFX-552 --- .../WebSocketCommandMiddleware.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/GameFrameX.SuperSocket.WebSocket.Server/WebSocketCommandMiddleware.cs b/src/GameFrameX.SuperSocket.WebSocket.Server/WebSocketCommandMiddleware.cs index 9af9b0182..3d7741b9e 100644 --- a/src/GameFrameX.SuperSocket.WebSocket.Server/WebSocketCommandMiddleware.cs +++ b/src/GameFrameX.SuperSocket.WebSocket.Server/WebSocketCommandMiddleware.cs @@ -5,7 +5,10 @@ namespace GameFrameX.SuperSocket.WebSocket.Server { - interface IWebSocketCommandMiddleware : IMiddleware + /// + /// Represents a middleware for handling WebSocket commands. + /// + public interface IWebSocketCommandMiddleware : IMiddleware { }