public void UploadInformation()
        {
            GatherInformationForUpload();

            try
            {
                const string BugUrl  = "https://nonsensical.fogbugz.com/scoutSubmit.asp";
                const string BugUser = "******";

                BugzScoutWrapper bugzScout = new BugzScoutWrapper(BugUrl, BugUser);

                SendInformationSucceeded = _bugReporter.Report(bugzScout);
                if (!SendInformationSucceeded)
                {
                    ErrorMessage = _bugReporter.BugServerResponse;
                }
            }
            catch (Exception ex)
            {
                SendInformationSucceeded = false;
                ErrorMessage             = ex.Message;
            }
        }