Exemplo n.º 1
0
        /*Pings the entered address to see if the address is on the network.*/
        public static bool CheckAddress(string addr)
        {
            Net pinger = new Net();

            pinger.PingAddress(addr); // ping the supplied address.

            if (scount >= 1)
            {
                return true;
            }

            return false;
        }