De retour du pays
static public string GetCountry()
{
return new WebClient().DownloadString("http://api.hostip.info/country.php");
}
Utilisation:
Console.WriteLine(GetCountry()); // will return short code for your country
De retour d'info
static public string GetInfo()
{
return new WebClient().DownloadString("http://api.hostip.info/get_json.php");
}
Utilisation:
Console.WriteLine(GetInfo());
// Example:
// {
// "country_name":"COUNTRY NAME",
// "country_code":"COUNTRY CODE",
// "city":"City",
// "ip":"XX.XXX.XX.XXX"
// }