ArticlesSearchFromFeedzillaAPI.Client.ClientUI.Main C# (CSharp) Method

Main() static private method

static private Main ( ) : void
return void
        static void Main()
        {
            string decorationLine = new string('-', Console.WindowWidth);
            Console.Write(decorationLine);
            Console.WriteLine("***Getting the titles and URLs of a specified number of articles from Feedzilla API service***");
            Console.Write(decorationLine);

            Console.Write("Enter the search string: ");
            string searchString = Console.ReadLine();
            Console.Write("Enter the count of articles to retrieve: ");
            int resultsCount = int.Parse(Console.ReadLine());

            HttpClient httpClient = new HttpClient();
            httpClient.BaseAddress = new Uri("http://api.feedzilla.com/v1/articles/");
            MediaTypeWithQualityHeaderValue jsonMediaType = new MediaTypeWithQualityHeaderValue("application/json");
            httpClient.DefaultRequestHeaders.Accept.Add(jsonMediaType);

            ArticlesCollection articles = new ArticlesCollection();
            using (httpClient)
            {
                articles = GetArticles(httpClient, searchString, resultsCount);
            }

            if (articles.Articles.Count != 0)
            {
                foreach (Article article in articles.Articles)
                {
                    Console.Write(new string('_', Console.WindowWidth));
                    Console.WriteLine("Title: {0}", article.Title);
                    Console.WriteLine("URL: {0}", article.Url);
                }
            }
            else
            {
                Console.WriteLine("No articles found!");
            }
        }