I'm trying to ping some ip adresses to find out which one is reachable, but
it seems that System.Net.NetworkInformation.Ping is not working on
MonoTouch? Every single adress, even non existing ones, return an
IPStatus.Success.

sample:

System.Net.NetworkInformation.Ping ping = new
System.Net.NetworkInformation.Ping();
System.Net.NetworkInformation.PingReply reply = ping.Send("192.168.1.81");
if (reply.Status == IPStatus.Success)
{
   //stuff goes here...
}

Is there another way to find out if the ip adress the user entered, is
reachable?

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/System-Net-NetworkInformation-Ping-not-supported-in-MT-tp3821917p3821917.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to