‘ Releases ’ category archive

WordsFinder .NET API

February 09, 08 by admin

Wordsfinder is a professional keywords and tags generator, created by a small company in London, UK. Currently they have only released a Wordpress plugin, but Dot Net Pro are proud to announce a .NET (2.0) API implementation of the Keyword Extractor API, in fully managed code!

To use the API, Simply add the reference to your project, and use the following code, as a sample:

1 KeywordExtractor extractor = new KeywordExtractor(00000000-0000-0000-0000-000000000000);
2 extractor.Text = Your text goes in here;
3 extractor.PerformRequest();
4 
5 foreach (string s in extractor.Keywords)
6 {
7     Console.WriteLine(s);
8 }
Download Here

For support for the .NET API, please leave a comment on this post, and we will get in contact with you.