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
2010-09-15 17:50:11
A:
I found it :-P
System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable(
);
Thanks guys you pointed me in the right direction.
Jamey McElveen
2010-09-16 01:50:26