I am trying to get some network information, such as Network Type, Network Status, Cell ID, MCC, MNC, LAC, BID, NID, SID, Signal Strength, Operator Name.
The only thing I can get now is the name of the mobile operator using:
using Microsoft.Phone.Net.NetworkInformation; System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append("Mobile operator: "); sb.AppendLine(DeviceNetworkInformation.CellularMobileOperator);
How can I get if WiFi is available, roaming is available, just true or false. Is there any solution for receiving any other information, such as a network, for example, if it is GSM - CDMA, for example?
Also look for a list of Wi-Fi networks, available places and get a list.
windows-phone-8
Bozow
source share