string IRemoteControl.SendRequest(string request)
        {
            try
            {
                return(_proxy.SendRequest(request));
            }
            catch (Exception ex)
            {
                Logger.LogException(ex);

                Abort();
                Open();
            }

            return(null);
        }