poobalan
poobalan

Reputation: 21

Identify Wireless or GPRS network using C#

How do I identify the network type the phone is operating in (wireless, or GPRS) using C#?

Thanks in advance...

Upvotes: 2

Views: 345

Answers (1)

CassOnMars
CassOnMars

Reputation: 6181

http://msdn.microsoft.com/en-us/library/microsoft.devices.networkinformation.networkinterface.getinternetinterfacetype%28v=vs.92%29.aspx

NetworkInterface.GetInternetInterfaceType returns a NetworkInterfaceType enum you can match on.

Upvotes: 1

Related Questions