使用monotouch检查互联网接入

时间:2009-12-25 15:38:21

标签: iphone xamarin.ios

如何使用MonoTouch检查互联网访问?我不在乎互联网是来自WIFI还是Cell Network,我关心的是是否有互联网接入。

1 个答案:

答案 0 :(得分:20)

使用Miguel的Reachability类(在这里找到:https://github.com/xamarin/monotouch-samples/blob/master/ReachabilitySample/reachability.cs)你可以这样称呼它:

if(!Reachability.IsHostReachable("http://google.com")) {
    // Put alternative content/message here
}
else
{
    // Put Internet Required Code here
}

希望这有帮助,

ChrisNTR