ping test 썸네일형 리스트형 [C#] Ping 테스트 public bool Connect(string ip) // 핑테스트 { IPAddress ipAddress; try { //IP Address 할당 ipAddress = IPAddress.Parse(ip); Ping pingSender = new Ping(); PingOptions options = new PingOptions(); // Use the default Ttl value which is 128, // but change the fragmentation behavior. options.DontFragment = true; // Create a buffer of 32 bytes of data to be transmitted. string data = "aaaaaaaaaaaaaaaaaaaaaaa.. 더보기 이전 1 다음