VincentPestana / SocketShot

C# console that takes screenshots and streams them over SignalR, to a html webpage.
MIT License
1 stars 1 forks source link

SignalR cannot send more than 64kb #1

Closed VincentPestana closed 5 years ago

VincentPestana commented 5 years ago

SignalR does not send more than 64kb per message. Making it a little difficult to fit an entire screenshot in 64kb.

VincentPestana commented 5 years ago

The limit can be overridden in Startup.cs GlobalHost.Configuration.MaxIncomingWebSocketMessageSize = null;

However the streaming time to compute and send, really starts to lag.

DO NOT INCREASE SIGNALR SEND LIMIT

VincentPestana commented 5 years ago

I've yet to enable full 1080p capturing yet, so closing this to do more research into how much data is too much data to send per message.