Esempio n. 1
0
        /// <summary>
        /// Get the source code of the web page given the results of [year]
        /// </summary>
        /// <param name="_year">Results for the [year]</param>
        /// <returns>source code as string</returns>
        private string GetSourceCodeForYear(int _year)
        {
            string sourceCode = string.Empty;

            sourceCode = _webAccess.GetCodeSourceOfPage(string.Concat(_webSiteUrl, _year.ToString()));

            return(sourceCode);
        }