This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///Contributed by Stuart Eastland of RightFile.com | |
public static void GetNearest(string key, string mcc, string mnc, string lac, string cid) | |
{ | |
try | |
{ | |
string url = "http://us1.unwiredlabs.com/v2/process.php"; | |
var httpWebRequest = (HttpWebRequest)WebRequest.Create(url); | |
httpWebRequest.ContentType = "application/json; charset=utf-8"; | |
httpWebRequest.Method = "POST"; |