protected void Process_Thread(object args)
        {
            try
            {
                var pipeName = (string)args;

                var server = new ServicePipeServer();

                server.Process(pipeName, false);
            }
            catch (Exception exception)
            {
                LastException = exception;
            }
        }
        private void ServicePipeServer_Process()
        {
            try
              {
            if (_runTestCases)
            {
              Test.Run();
              return;
            }

            _servicePipeServer = new ServicePipeServer();

            _servicePipeServer.Process();
              }
              catch (Exception exception)
              {
            Log.Error(exception, false);
              }
        }
        protected void Process_Thread(object args)
        {
            try
              {
            var pipeName = (string)args;

            var server = new ServicePipeServer();

            server.Process(pipeName, false);
              }
              catch (Exception exception)
              {
            LastException = exception;
              }
        }