public WebsocketMiddleware(RequestDelegate next, IWSHandler handler) { _next = next; _handler = handler; }
public static IApplicationBuilder MapWebsocket(this IApplicationBuilder app, PathString path, IWSHandler handler) { return(app.Map(path, x => x.UseMiddleware <WebsocketMiddleware>(handler))); }