네트워크 연결이 올바른지 확인

498 단어 네트워킹dll
프로젝트에서 네트워크 감지를 사용하는데 두 가지 방법이 있습니다.
1. ping 방법
   Ping ping = new Ping();     PingReply reply = ping.Send(       ,     );    if (reply.Status == IPStatus.Success)            ;

2, 호출 시스템 dll
 [DllImport("winInet.dll")]    private static extern bool InternetGetConnectedState(ref int nFlags, int nReserved);    public static bool CheckInternet()    {         int nFlags = 0;        return InternetGetConnectedState(ref nFlags, 0);    }

좋은 웹페이지 즐겨찾기