views:

16

answers:

1

How to get Network Name (Subscriber Name) on Windows Mobile?

A: 

You can use RIL_GetOperatorList to retrieve the list of available operators. The array of RILOPERATORINFO structures returned by this call will likely include one with a dwStatus of RIL_OPSTATUS_CURRENT which will be the name of the network operator you are currently connected to.

Be aware that the call to RIL_GetOperatorList can take quite a few seconds to complete since it is, in effect, searching for available networks.

simons19