windows phone 7獲得當前使用網路類型(裝置是否通過zune與PC相連)

來源:互聯網
上載者:User
/// <summary>
/// 判斷網路是否可用
/// </summary>
/// <returns>true or false</returns>
public static bool queryNetWorkStatus()
{
  return Microsoft.Phone.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable();//當前網路是否可用
}
/// <summary>
/// 擷取當前網路的類型
/// </summary>
/// <returns></returns>
public static Type queryNetWorkType()
{
  NetworkInterfaceType _currentNetworkType = Microsoft.Phone.Net.NetworkInformation.NetworkInterface.NetworkInterfaceType;//擷取當前網路的類型
  Type type;
  switch (_currentNetworkType)
  {
    case NetworkInterfaceType.MobileBroadbandCdma:
      // "Cdma網路";
      type = Type.Cdma網路;
      break;
    case NetworkInterfaceType.MobileBroadbandGsm:
      // "Csm網路";
      type = Type.Csm網路;
      break;
    case NetworkInterfaceType.Wireless80211:
      // "Wireless網路";
      type = Type.Wireless網路;
      break;
    case NetworkInterfaceType.Ethernet:
      // "Ethernet網路";
      type = Type.Ethernet網路;
      break;
    case NetworkInterfaceType.None:
      // "網路不可用";
      type = Type.網路不可用;
      break;
    default:
      // "其他的網路";
      type = Type.其他的網路;
      break;
  }
  return type;
}
/// <summary>
/// 網路類型
/// </summary>
  public enum Type
  {
    Cdma網路,
    Csm網路,
    Wireless網路,
    Ethernet網路,
    網路不可用,
    其他的網路 ,
  }
}
}

判斷當前手機是否通過zune與PC相串連,需要在Device下進行調試,而在當前模擬器調試的時候其連線類型為Wireless80211

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.