Access to a phone with information about carrier information

Possible duplicate:
How to get carrier information for mango?

Can I get carrier information in a Windows phone? I want to show the name of the operator in the application.

+4
source share
2 answers

You can get the name of the operator using DeviceNetworkInformation.CellularMobileOperator.

See This for more details.

0
source

You can access this information using DeviceNetworkInformation.CellularMobileOperator .

DeviceNetworkInformation.CellularMobileOperator Property on MSDN

 var operatorName = DeviceNetworkInformation.CellularMobileOperator ?? "(No Network)"; 

Since the property can be null if no network is found, the above code will provide you with either a network operator or (No Network) in operatorName .

+2
source

All Articles