Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

This API is available on Firefox OS for privileged or certified applications only.

Summary

The MozMobileNetworkInfo interface allows access to information related to the network carrier. The navigator.mozMobileConnection uses it through its voice.network and data.network properties.

Interface overview

enum MobileNetworkState {"available", "connected", "forbidden"};

interface MozMobileNetworkInfo
{
  readonly attribute DOMString? longName;
  readonly attribute DOMString? mcc;
  readonly attribute DOMString? mnc;
  readonly attribute DOMString? shortName;
  readonly attribute MobileNetworkState? state;
};

Properties

MozMobileNetworkInfo.longName Read only
A string representing the long name of the network operator.
MozMobileNetworkInfo.mcc Read only
A number representing the Mobile Country Code (MCC) of the network operator.
MozMobileNetworkInfo.mnc Read only
A number representing the Mobile Network Code (MNC) of the network operator.
MozMobileNetworkInfo.shortName Read only
A string representing the short name of the network operator.
MozMobileNetworkInfo.state Read only
A string that gives the state of the network operator.

Methods

None.

Specification

Not part of any specification

See also

Document Tags and Contributors

 Last updated by: chrisdavidmills,