B2G/Bluetooth/WebBluetooth-v2/BluetoothAddressEvent

From MozillaWiki
< B2G‎ | Bluetooth‎ | WebBluetooth-v2
Revision as of 11:21, 5 March 2014 by Jamin Liu (talk | contribs) (Created page with "== Overview == The BluetoothAddressEvent API provides access to a Bluetooth address when the adapterremoved or deviceunpaired event is fired. See [https://wiki.mozilla.org/B2G...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

The BluetoothAddressEvent API provides access to a Bluetooth address when the adapterremoved or deviceunpaired event is fired. See BluetoothAdapter.adapterremoved and BluetoothAdapter.deviceunpaired for more information.

Interface

interface BluetoothAddressEvent : Event
{
  readonly attribute BluetoothAddress address;
};

Attributes

address

Description
A BluetoothAddress object representing the address to access
Value type
BluetoothAddress