인터넷에 연결 되어있는지 확인하는 방법..
출처 : http://blog.naver.com/yonga?Redirect=Log&logNo=150004198475
다음 IsConnectedToInternet() 함수를 사용하면 된다.
true를 리턴하면 인터넷에 연결이 되있는것이고
false를 리턴하면 인터넷에 연결이 되어있지 않는 상태이다.
[System.Runtime.InteropServices.DllImportAttribute("wininet.dll")] private extern static bool InternetGetConnectedState(out int Description, int ReservedValue); public static bool IsConnectedToInternet() { int Desc; return InternetGetConnectedState(out Desc, 0); }
'C# > 윈도우 프로그래밍' 카테고리의 다른 글
[C#] 마우스 휠 이벤트 (0) | 2012.04.07 |
---|---|
어플리케이션 레벨에서의 메세지 처리 (0) | 2012.04.06 |
전체화면 설정 (Full Screen) (0) | 2012.04.06 |