C# [C#] 서버 상태 체크 _Able 2016. 8. 31. 08:42 서버가 살아 있나 죽어 있나를 확인해볼 수 있는 소스 public void bool IsAddressRunning(string address) { try { WebClient webClient = new WebClient(); webClient.DownloadData(address); webClient.Dispose(); return true; } catch { return false; } } 저작자표시 비영리 변경금지 (새창열림)