9 references to WebSocketMiddleware
Microsoft.AspNetCore.WebSockets (9)
AbortStream.cs (1)
10
/// Used in <see cref="
WebSocketMiddleware
"/> to wrap the <see cref="HttpContext"/>.Request.Body stream
WebSocketMiddleware.cs (2)
30
/// Creates a new instance of the <see cref="
WebSocketMiddleware
"/>.
45
_logger = loggerFactory.CreateLogger<
WebSocketMiddleware
>();
WebSocketMiddlewareExtensions.cs (6)
10
/// <see cref="IApplicationBuilder" /> extension methods to add and configure <see cref="
WebSocketMiddleware
" />.
15
/// Adds the <see cref="
WebSocketMiddleware
" /> to the request pipeline.
27
return app.UseMiddleware<
WebSocketMiddleware
>();
31
/// Adds the <see cref="
WebSocketMiddleware
" /> to the request pipeline.
37
/// The <see cref="WebSocketOptions" /> to be used for the <see cref="
WebSocketMiddleware
" />.
47
return app.UseMiddleware<
WebSocketMiddleware
>(Options.Create(options));