This API is available on Firefox OS for privileged or certified applications 仅。

摘要

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

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;
};
					

特性

MozMobileNetworkInfo.longName 只读

A string representing the long name of the network operator.

MozMobileNetworkInfo.mcc 只读
A number representing the Mobile Country Code (MCC) of the network operator.
MozMobileNetworkInfo.mnc 只读
A number representing the Mobile Network Code (MNC) of the network operator.
MozMobileNetworkInfo.shortName 只读

A string representing the short name of the network operator.

MozMobileNetworkInfo.state 只读

A string that gives the state of the network operator.

方法

None.

规范

Not part of any specification

另请参阅

元数据

  • 最后修改: