I'm consuming realtime data from a websocket client and I want to be writing it into a .txt file. ```cs ws.OnMessage += (sender, e) => { ... do something with e.RawData }; ``` What is the most efficient way to do so?