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?
GwebSearchClientyou need in the documentation of yourGwebSearchClientto watch. - VladD