I want to develop a signal Test program,I need to get signalling now.
How can I get it?
I want to develop a signal Test program,I need to get signalling now.
How can I get it?
Can you please elaborate your question?
sreerajvr
Hello Admin1986,
You can use the Microsoft.Phone.Net.NetworkInformation Namespace to get the Network type and so on.
See the MSDN references for the same.
0) NetworkInterface Class
1) Network and Network Interface Information for Windows Phone
Hope it would helps you.Code:public void GetNet() { NetworkInterfaceType nit = NetworkInterface.GetInternetInterfaceType(); if (nit == NetworkInterfaceType.Wireless80211) { textBlock1.Text = "wireless"; } else if (nit == NetworkInterfaceType.None) { textBlock1.Text = "none"; } }
Pavan Pareta
Sr. Software Engineer
http://windows-mobile-dev.blogspot.com
I need to get signalling between UE and NodeB
Can I get it?