Come si chiama un metodo statico? Voglio chiamare questo da una classe che ho creato, voglio ottenere la posizione dall'IP. Ho dichiarato, ma quello che devo fare è chiamare il metodo ... come static
...Come chiamare un metodo statico in C#
Per essere onesto con te, io sono abbastanza confuso qui, ho bisogno di istanziare address
, city
, ecc .?
Ho fatto questo finora;
LocationTools.cs
public static class LocationTools
{
public static void GetLocationFromIP(string address, out string city, out string region, out string country, out double? latitude, out double? longitude)
{
Home.cs
public string IPAPIKey
{
get
{
return WebConfigurationManager.AppSettings["IPAPIKey"];
}
}
////To get the ip address of the machine and not the proxy use the following code
static void GetLocationFromIP()
{
string strIPAddress = Request.UserHostAddress.ToString();
strIPAddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (strIPAddress == null || strIPAddress == "")
{
strIPAddress = Request.ServerVariables["REMOTE_ADDR"].ToString();
}
}
}
}
cosa hai provato? basta usare LocationTools.GetLocationFromIP (...); –