인터넷에 연결 되어있는지 확인하는 방법..


출처 : 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);
}


Posted by 투명테잎