using JNPF.WebSockets; using Microsoft.AspNetCore.Http; namespace Microsoft.AspNetCore.Builder; /// /// WebSocket 中间件拓展. /// public static class WebSocketApplicationBuilderExtensions { /// /// 映射 WebSocket 管理. /// /// /// /// /// public static IApplicationBuilder MapWebSocketManager( this IApplicationBuilder app, PathString path, WebSocketHandler handler) { return app.Map(path, (_app) => _app.UseMiddleware(handler)); } }