views:

78

answers:

2

How can I detect network connectivity in Windows Phone 7? Is there a simple API for that?

A: 

Try NetworkChange.NetworkAddressChange event in System.Net.NetworkInformation namesapce.

Checkout this blog for implementation details.

Vinay B R
A: 

I found it :-P

System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable();

Thanks guys you pointed me in the right direction.

Jamey McElveen