[C# 프로그래밍] 예외 관련
Programming with C#/C# 프로그래밍 |
2015. 7. 6. 16:35
※인터넷 연결 체크
//using webclient
public static bool CheckForInternetConnection()
{
try
{
using (var client = new WebClient())
using (var stream = client.OpenRead("http://www.google.com"))
{
return true;
}
}
catch
{
return false;
}
}
// using ping
Ping myPing = new Ping();
String host = "google.com";
byte[] buffer = new byte[32];
int timeout = 1000;
PingOptions pingOptions = new PingOptions();
PingReply reply = myPing.Send(host, timeout, buffer, pingOptions);
if (reply.Status == IPStatus.Success) {
// presumably online
}
'Programming with C# > C# 프로그래밍' 카테고리의 다른 글
| [C# 프로그래밍] Drag and Drop (3) | 2016.01.31 |
|---|---|
| [C# 프로그래밍] 이미지와 문자열 변환 (0) | 2015.07.06 |
