Saber si mi PC está conectado a internet
Artículo por Club Developers · 09 mayo 2006
2067 vistas
Vamos a usar la función InternetGetConnectedState de la dll win32 wininet.dll
csharp
using System.Runtime.InteropServices; // declaración de la API [DllImport("wininet.dll")] public extern static bool InternetGetConnectedState( out int Description, int ReservedValue ) ; // Uso del API public static bool IsConnected( ) { int Desc ; return InternetGetConnectedState( out Desc, 0 ) ; }