문제

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