On windows phone 8, is there any api to get the nearest cell tower information? like cell id, location area code etc...
Asked
Active
Viewed 529 times
2
-
have you found a solution to your question yet?? – Nequita Apr 23 '13 at 09:09
-
This question would be better placed in https://windowsphone.stackexchange.com/ – LSerni Mar 28 '18 at 22:24
2 Answers
0
Any updates in WP 8.1?
The best I have found so far:
NetworkInterfaceList networkInterfaceList = new NetworkInterfaceList();
foreach (NetworkInterfaceInfo networkInterfaceInfo in networkInterfaceList)
{
if (networkInterfaceInfo.InterfaceSubtype == NetworkInterfaceSubType.Cellular_HSPA)
{...}
}
But it's not MCC, MNC, LAC, CellID level data.