Domanda

On windows phone 8, is there any api to get the nearest cell tower information? like cell id, location area code etc...

È stato utile?

Soluzione

Current Windows Phone 8 API doesn't provide these details.

Altri suggerimenti

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top