#region 获得当前的网络连接状态 public static bool CheckNetwork() { bool isOnline = false; //获得当前的网络连接状态 ConnectionProfile InternetConnectionProfile = NetworkInformation.GetInternetConnectionProfile(); if (InternetConnectionProfile == null) { //断网情况下 } else { isOnline = true; } return isOnline; } #endregion
时间: 2024-09-29 02:42:53