Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

2 роки тому
12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.InteropServices;
  5. using System.Text;
  6. using System.Threading;
  7. using System.Threading.Tasks;
  8. namespace HKCardIN.Helper
  9. {
  10. public class HKHelper: Singleton<HKHelper>
  11. {
  12. /// <summary>
  13. /// 判断网络状况的方法,返回值true为连接,false为未连接
  14. /// </summary>
  15. /// <param name="conState"></param>
  16. /// <param name="reder"></param>
  17. /// <returns></returns>
  18. [DllImport("wininet")]
  19. public extern static bool InternetGetConnectedState(out int conState, int reder);
  20. /// <summary>
  21. /// 获取当前网络连接状态
  22. /// </summary>
  23. /// <returns>成功连接网络返回 true,未连接返回 false</returns>
  24. public bool GetNetworkState()
  25. {
  26. return InternetGetConnectedState(out int i, 0);
  27. }
  28. }
  29. }