Skip to content

Latest commit

 

History

History
22 lines (22 loc) · 546 Bytes

File metadata and controls

22 lines (22 loc) · 546 Bytes

BingCustomSearchLibrary

This Library converts the jsons from Bing Custom Search Api to Response Objects

USAGE:
var searcher = new CustomSearch("YOUR_SUBSCRIPTION_KEY","CUSTOM_CONFIGURATION_ID");
var results = searcher.GetWebResults("YOUR_SEARCH_TERMS");
Console.WriteLine(results.name);
Console.WriteLine(results.url);
Console.WriteLine(results.snippet);

OR:
var results = searcher.GetImageResults("YOUR_SEARCH_TERMS");
OR:
var results = searcher.GetVideoResults("YOUR_SEARCH_TERMS");