C#
C#

help

Root Question Message

Electron
Electron10/19/2022
How do I efficiently stream data to disk from a websocket client?

I'm consuming realtime data from a websocket client and I want to be writing it into a .txt file.

ws.OnMessage += (sender, e) => {
    ... do something with e.RawData 
  };


What is the most efficient way to do so?
ContactFrequently Asked QuestionsJoin The DiscordBugs & Feature RequestsTerms & Privacy