Adrian Cockburn
Adrian Cockburn
I noticed there's been some work happening on ['BlazorPack'](https://github.com/aspnet/AspNetCore/blob/14496c9989745c09efe0a08bec579a20606490e9/src/Components/Server/src/BlazorPack/BlazorPackHubProtocol.cs)
I'm using the latest bits with: '0.5.0-blazor-0.9.0-preview3-19154-02' I added a messagepack branch to a fork of the repo here: https://github.com/netclectic/BlazorSignalR/tree/messagepack
Cool, no rush here. I can continue to use LongPolling or Json for the time being.
It looks like there was some major surgery carried out by the AngleSharp guys back in 2016, they decided to rename AngleSharp.Parser.Html. to AngleSharp.Html.Parser and various other breaking changes. So...
As I said above, it was renamed from AngleSharp.Parser.Html to AngleSharp.Html.Parser - if you want to use it with AngleSharp 14 you'll need to make sure you are using the...
Personally, I'm not a fan of the use of attributes in this way. I prefer to see exactly what's happening at the point of use. For this scenario I like...
But on the flip side, as a consumer I would want to choose which JSON library I was going to use.
+1 for something like this. it would be nice to use an action, similar to whats already happening with the foreach methods in the IUnifiedData, something like this... ``` using...
Yep, perfect. I tried out the action method with the xxhash function that I've been using and managed to make it work but having input / output stream would make...
I had a look through your work WIP, any reason why you didn't add an output stream to the byte array methods? I made a fork and implemented it on...