An implementation of the text search of Wikipedia
WikiSharp.Wiki wiki = new WikiSharp.Wiki();
var temp = await wiki.Search(textBox1.Text);
foreach (string a in temp.Values)
{
Console.writeLine(a);
}
}
Processes Wikimedia XML, removing markdown and building a section hierarchy. This is an update of the PlaintextWikipedia package and provides more functionality with a better API.
The IMDb-API is a web service for receiving movie, serial and cast information. APIs results is a JSON and includes items such as movie specifications, images, posters, trailers, ratings, Wikipedia page content and more.
.NET Client for Wikipedia.org REST API. The client will be updated regularly to support all the operations that the REST endpoints support. If you come across missing features or bugs, do open an issue on Github and it will be addressed quickly.