コード例 #1
0
ファイル: NativeMethods.cs プロジェクト: standardfx/standard
        public static bool IsConnectedToInternet()
        {
            InternetConnectionState_E flags = 0;
            bool isConnected = InternetGetConnectedState(ref flags, 0);

            return(isConnected);
        }
コード例 #2
0
ファイル: NativeMethods.cs プロジェクト: standardfx/standard
 private extern static bool InternetGetConnectedState(ref InternetConnectionState_E lpdwFlags, int dwReserved);