Lib.AspNetCore.ServerSentEvents
Lib.AspNetCore.ServerSentEvents copied to clipboard
Lib.AspNetCore.ServerSentEvents is a library which provides Server-Sent Events (SSE) support for ASP.NET Core
# Problem to solve Currently, We have to use `clientConnectedArgs.Request.HttpContext.RequestServices.GetRequiredService()` to get needed services from DI. It's not an intended way. # Proposal A more ASP.NET Core style DI. Maybe...
Adding validation step where the service gets the opportunity to stop the SSE connection and return a regular HTTP response instead, as well as a way to disconnect only the...
I wanted to build an SSE endpoint which takes a query string parameter to specify an ID of a stream of information and then, once that stream has ended, replied...
My frontend guys aren't happy with 'KEEPALIVE', is it possible to change the format without having to implement my own keepalive mechanism?
https://devblogs.microsoft.com/dotnet/creating-aot-compatible-libraries/
The `Test.AspNetCore.ServerSentEvents.Functional.KeepAliveTests.ServerSentEventsServer_KeepaliveModeAlwaysKeepaliveKindEventKeepaliveContentCustom_SendsCustomEventKeepalive` test seems to failing randomly.