SDownload.Framework.WSReportProxy.WSReport C# (CSharp) Method

WSReport() private method

Sends a string to the remote websocket client passing in default values for the second and third param
private WSReport ( String info ) : void
info String The information to send
return void
        private void WSReport(String info)
        {
            try
            {
                Context.Send(info);
            }
            catch (Exception e)
            {
                CrashHandler.Throw("There was an issue communicating with the UI!", e);
            }
        }