确定是否存在网络连接的最佳方法是什么?
3 回答
忽然笑
TA贡献1806条经验 获得超5个赞
调用此方法以检查网络连接。
public static bool IsConnectedToInternet()
{
bool returnValue = false;
try
{
int Desc;
returnValue = Utility.InternetGetConnectedState(out Desc, 0);
}
catch
{
returnValue = false;
}
return returnValue;
}
将其放在代码行下面。
[DllImport("wininet.dll")]
public extern static bool InternetGetConnectedState(out int Description, int ReservedValue);
- 3 回答
- 0 关注
- 516 浏览
添加回答
举报
0/150
提交
取消