I try to retrieve how to scan wireless networks on the windows phone. I found only examples about working with sockets in msdn documentation. Is possible get information about strength of signal (RSSI value in dB)?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Information on the signal strength of connected networks is not made available to apps; Instead you can find out from the
Microsoft.Phone.Net.NetworkInformation.DeviceNetworkInformationclass if the network is available, whether it is a WiFi network, as well as information on the cellular network (name, whether it is data enabled, whether roaming is allowed), but not strength nor details of disconnected networks.The closest you can get is to retrieve the available bandwidth (from
Microsoft.Phone.Net.NetworkInformation.NetworkInterfaceInfo), as that can have a bearing on signal strength (but it cannot be guaranteed to be a proportional relationship)