Reputation: 21
How do I identify the network type the phone is operating in (wireless, or GPRS) using C#?
Thanks in advance...
Upvotes: 2
Views: 345
Reputation: 6181
NetworkInterface.GetInternetInterfaceType
returns a NetworkInterfaceType
enum you can match on.
Upvotes: 1