InternetGetConnectedState (wininet)
Last changed: -67.166.68.151

.
Summary
TODO - a short description

C# Signature:

[DllImport("wininet.dll", SetLastError=true)]
extern static bool InternetGetConnectedState(
   out InternetGetConnectedStateFlags Description, int ReservedValue);

VB Signature:

  Private Declare Function InternetGetConnectedState Lib "wininet.dll" _
(ByRef dwFlags as Long, ByVal dwReserved as Long) as Long

User-Defined Types:

InternetGetConnectedStateFlags

Notes:

Private Enum ConnectionStates
    Modem = &H1
    LAN = &H2
    Proxy = &H4
    RasInstalled = &H10
    Offline = &H20
    Configured = &H40
End Enum

Tips & Tricks:

Please add some!

Sample Code:

C: http://support.microsoft.com/default.aspx?scid=kb;EN-US;242558

C#: http://www.aspemporium.com/aspEmporium/cshrp/howtos/howto.asp?hid=27

Alternative Managed API:

Try NetworkInterface.GetIsNetworkAvailable() in the the System.Net.NetworkInformation namespace. It returns true when a network is available and false otherwise. See also: http://msdn2.microsoft.com/en-us/library/system.net.networkinformation.networkinterface.getisnetworkavailable(VS.80).aspx. NOTE: this is all new in .NET 2.0!

Documentation

Direct Link: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wininet/wininet/internetgetconnectedstate.asp