سؤال

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

هل كانت مفيدة؟

المحلول

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

نصائح أخرى

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.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top