ページのリンクを使用して Web ページのプレビュー サムネイル画像を生成し、メタ ディスクリプションを取得できます。
この以前の投稿とこのコードが役立つ場合があります。
System.Windows.Forms.WebBrowser web = new System.Windows.Forms.WebBrowser();
web.ScrollBarsEnabled = false;
web.ScriptErrorsSuppressed = true;
web.Navigate("http://www.your_url.com/with_params");
while (web.ReadyState != WebBrowserReadyState.Complete)
Application.DoEvents();
//this is where we start search the DOM for our meta information and extract the content attribute into a usable string.
String meta = (web.Document.GetElementsByTagName("meta")[0]).GetAttribute("content");
System.Console.WriteLine("Meta Value is {0}", meta);