是否可以在Windows手机中获取运营商信息? 我想在申请中显示运营商名称。
答案 0 :(得分:2)
您可以使用DeviceNetworkInformation.CellularMobileOperator
。
DeviceNetworkInformation.CellularMobileOperator Property on MSDN
var operatorName = DeviceNetworkInformation.CellularMobileOperator ?? "(No Network)";
由于在未找到网络的情况下该属性可能为null
,因此上述代码会将网络运营商或(No Network)
转换为operatorName
。
答案 1 :(得分:0)
您可以使用DeviceNetworkInformation.CellularMobileOperator获取运营商名称。
有关详细信息,请参阅This。