|
|
От: |
Arboz
|
|
| Дата: | 17.05.06 11:49 | ||
| Оценка: | 4 (1) | ||
public class InternetState
{
[DllImport("wininet.dll")]
extern static bool InternetGetConnectedState(out int Description, int ReservedValue) ;
public static bool IsConnected
{
get
{
int Desc ;
return InternetGetConnectedState(out Desc, 0 ) ;
}
}
}