I am trying to use the Wiktionary's API trying to know if some words are defined or not. I have seen the open source's WiktionaryNET and they use this code:
In my console code:
var word = Wiktionary.Define("clean");
foreach (var def in word.Definition)
Console.WriteLine(def);
In the app.config:
<system.net>
<defaultProxy useDefaultCredentials="true" />
</system.net>
I use the same things but the result is always "Definition.Count = 0" Someone know, how can I use or set up to get results?
Thanks in advance for your help.