일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- rs422
- matplot
- 크롤링
- 자본주의
- pymssql
- django
- 딥러닝
- 윈도우10
- 파이썬
- Python
- PYTHON MSSQL
- vscode
- MEAN Stack
- 티스토리 초대장
- MSSQL
- Visual Studio Code
- oracle
- tensorflow
- 오라클
- scrapy
- sql developer
- M2M
- Serial
- windows10
- MX Component
- rs485
- c#
- MSSQL PYTHON
- 텐서플로우
- 장고
Archives
- Today
- Total
안까먹을라고 쓰는 블로그
[C#] Network Ping Test 본문
반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | // Ping Test Values Ping pingSender = new Ping(); PingOptions options = new PingOptions(); PingReply reply; string data = ""; string address = "192.168.0.59"; byte[] buffer; int timeout = 500; int RetryCnt = 1; string Flag; /// Ping Test Function /// /// Ping Test Flag (true/false) public Boolean Ping() { try { Flag = ""; options.DontFragment = true; buffer = Encoding.ASCII.GetBytes(data); reply = pingSender.Send(address, timeout, buffer, options); if (reply.Status == IPStatus.Success) { MessageBox.Show("PingTest_Success : " + reply.RoundtripTime); return true; } else { MessageBox.Show("PingTest_Failed : " + reply.RoundtripTime); return false; } } catch (Exception EX) { //MessageBox.Show(EX.ToString()); return false; } } | cs |
반응형
'Language > C#' 카테고리의 다른 글
[C#] IPC(Inter Process Communication) - 프로세스간 통신 (0) | 2012.10.29 |
---|---|
[C#] Timer 배열로 사용하기 (0) | 2012.10.05 |
[C#] 시스템 종료 / 재시작 (0) | 2012.09.11 |
[C#] Tray Icon 만들기 (0) | 2012.09.11 |
[C#] ComboBox 직접 입력안되게 하기 (1) | 2012.09.11 |
Comments