Kieran Devlin

Results 43 comments of 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`. ![image](https://user-images.githubusercontent.com/21192520/153683019-1d1d1b49-9b04-4090-aabe-8ed26b3620bf.png) ![image](https://user-images.githubusercontent.com/21192520/153684959-403b6902-736b-4d2a-aa8f-15e71a5514eb.png) ![image](https://user-images.githubusercontent.com/21192520/153684964-f76e94b1-7f03-43ae-b8bf-fa27acd2bd9e.png)

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

![image](https://user-images.githubusercontent.com/21192520/100552275-066ce500-327e-11eb-97b6-7269504cb750.png) 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...