/// <summary>
        /// Converts to string representation.
        /// </summary>
        /// <returns>String representation.</returns>
        public override string ToString()
        {
            string result = this.HttpLogs.Aggregate(string.Empty, (current, logItem) => current + (logItem.ToString() + "\r\n"));

            result += Separator;
            result += "                TOTAL\n";
            this.StartSxSOutput();
            for (HttpReportLines i = HttpReportLines.LineZero; i < HttpReportLines.HTTPReportMaxLine; i++)
            {
                result += this.GetSxSLine();
                result += "\n";
            }

            result += Separator;

            return(result);
        }
 /// <summary>
 /// Starts output for side-by-side
 /// </summary>
 public void StartSxSOutput()
 {
     this.sideBySideLine = 0;
 }
 /// <summary>
 /// Starts output for side-by-side
 /// </summary>
 public void StartSxSOutput()
 {
     this.sideBySideLine = 0;
 }