3

在 iPhone/iPod 上的 Monotouch 中,如何检测是否有可用的互联网连接?

4

1 回答 1

9

现在最好的方法是使用 Miguel de Icaza 的 GitHub 存储库中的这个类:

https://github.com/xamarin/monotouch-samples/blob/master/ReachabilitySample/reachability.cs

它是一个有很多方法的静态类,所以你所要做的就是将它添加到你的项目中并调用,例如:

NetworkStatus status = Reachability.InternetConnectionStatus();
于 2010-02-16T23:22:36.633 回答