File: Service1.cs Project: netotaku/e3Radio /// /// Sends data to the socket in JSON format. /// private static void SendEvent(IWebSocketConnection socket, string @event, object data) { var msg = new { @event = @event, data = data }; var json = Newtonsoft.Json...
private void InitializeChrome() { if ((Properties.Settings.Default.firstUse == true) || (Properties.Settings.Default.culture == "") || (Properties.Settings.Default.voicename == "")) { Chrome.Load(@"C:\Git Repos\Synthesizer.net\Synthesizer.net\resources\configurator.html"); } this.Controls...