You need to do in the application search through google. I found a good google-api-for-dotnet library . Search is easy:

GwebSearchClient client = new GwebSearchClient(""); IList<IWebResult> results = client.Search("война и мир", 10); foreach (IWebResult result in results) { Console.WriteLine("{0}", result.Url); } 

But since the program will make a lot of requests, I would like to protect myself (communicate through a proxy server). How can I do that?

  • This is GwebSearchClient you need in the documentation of your GwebSearchClient to watch. - VladD
  • There was nothing useful in the API. As an option - setting the global proxy WebRequest.DefaultWebProxy = new WebProxy (server_proxy_address); But I ran into another problem: it is very difficult to find a normally working free proxy server. The question can be closed. - Vasily12345678
  • @ Vasiliy12345678 the thing is that this is a forum = a book of knowledge, so questions are closed only if it does not comply with the rules of the forum. - Arantler

0