我使用此代码在我的应用程序中使用 bing api:
string requestString = "http://api.bing.net/xml.aspx?"
// Common request fields (required)
+ "AppId=" + bingAppId
+ "&Query=" + searchString
+ "&Sources=Web"
+ "&Web.Count=20";
我想知道是否有办法告诉 api 我不想从特定网站获取结果。