Kieran Devlin
Kieran Devlin
Had some time tonight to dig a little deeper, it appears the client is failing when its attempting to validate the header payload is `UFT8`.   
Tested the same client out with the following server with success: ```cs public class ConsoleServer { static HttpListener httpListener = new HttpListener(); private static Mutex signal = new Mutex(); public...
Im currently using `ConnectionContext.Abort();`
Shouldnt `BaseConnectionContext` also have a way of getting the connection state i.e if its closed, disconnected or connected? Im currently using the cancellation token to see if the context should...
I think I've seen it within the ASP NET repository. (This might not be the case) https://github.com/dotnet/aspnetcore/labels/%F0%9F%A5%8C%20Bedrock
 Specifically https://github.com/dotnet/aspnetcore/issues/15005
> Looks like it won't be in .NET 6, being listed as cut since 25 days in [dotnet/aspnetcore#27883](https://github.com/dotnet/aspnetcore/issues/27883) :( I clarified this with David in another thread a while ago....
> I may have found a solution. Just use cronicle on docker. You can use docker on windows and also docker commands on powershell. https://hub.docker.com/r/bluet/cronicle-docker via this link I installed...
The problem you have is that this project is using `WinForms` which is Windows dependent. To make this crossplatform, you would have to replace the UI with something like AvaloniaUI...
I would advise against using Qt. While C# bindings exist, they're not actively maintained and ones that are, have no official support. Also, the winforms style of design is very...