1

我正在使用 GoogleSearchAPI 来查找我在下面提到的代码中使用过的一些信息

GwebSearchClient client = new GwebSearchClient("test");
IList<IWebResult> results = client.Search("vampire diaries", 20);
foreach (IWebResult result in results)
{
   Response.Write(String.Format("[{0}] {1} => {2} <br/><br/><br/>", result.Title, result.Content, result.Url));
}

但它会给我 .com 网址,是否可以通过过滤器找出结果我的意思是我只需要 .UK 网址或 .US 网址。

我怎么会得到这样的细节?

谢谢

4

1 回答 1

1

是的,您可以添加过滤器,例如

 IEnumerable<IWebResult> result = client.Search(keyword.Name.Trim(), 20, "", "", "", "English","", "uk");
于 2014-08-11T11:42:15.247 回答