可能重复:
如何获取芒果的运营商详细信息?
是否可以在 windows phone 中获取运营商信息?我想在应用程序中显示运营商名称。
可能重复:
如何获取芒果的运营商详细信息?
是否可以在 windows phone 中获取运营商信息?我想在应用程序中显示运营商名称。
您可以使用 访问此信息DeviceNetworkInformation.CellularMobileOperator
。
MSDN 上的 DeviceNetworkInformation.CellularMobileOperator 属性
var operatorName = DeviceNetworkInformation.CellularMobileOperator ?? "(No Network)";
由于该属性可能是null
在没有找到网络的情况下,上面的代码将让你要么网络运营商要么(No Network)
进入operatorName
.
您可以使用 DeviceNetworkInformation.CellularMobileOperator 获取运营商名称。
有关更多详细信息,请参阅此。