Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an easier fast way to detect whether the (Windows Phone 7) device has an internet connection.

I'm currently sending a web request, waiting the timeout period and handling the exception. Hoping for a quick easy way to query the device to see whether it has a connection before sending any requests...

Thanks in advance,

share|improve this question

2 Answers

up vote 7 down vote accepted

This method will return NetworkInterfaceType.None if there is no connection.

NetworkInterface.GetInternetInterfaceType

Alternatively you will get NetworkInterfaceType.MobileBroadbandGSM, NetworkInterfaceType.Wireless80211, etc if there is a connection.

share|improve this answer
So I can't seem to find that class in the latest Windows Phone SDK (the latest release). The namespace Microsoft.Devices.NetworkInformation doesn't exist in System.Devices.dll. Are you using the latest SDK? Thanks, – will Sep 10 '10 at 1:00
2  
Nevermind, I found it (the docs are out of date). And looks like they simplified the interface a little. Now you can just call: System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable(). – will Sep 10 '10 at 1:08
You can call that, however the historical observation has been that it's always returning the same result on the emulator regardless of connection status. GetInternetInterfaceType has been the way around this. – Mick N Sep 11 '10 at 0:25
Yes, just found that out. ;> Thanks again for the pointer. – will Sep 15 '10 at 3:16
yw :) /15char.. – Mick N Sep 16 '10 at 0:22
show 4 more comments

There isn't really a faster way, though instead of a dummy request for this, perhaps you could actually make the request for data that you want, so if it does come back, you can handle the data without making a 2nd request.

share|improve this answer
This is what I'm doing now, I'm not using a dummy request. I'm really looking for a fast way to determine network connectivity WITHOUT making a request. But thanks for the reply... – will Sep 9 '10 at 22:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.