B2G/Bluetooth/WebBluetooth-v2/BluetoothAddressEvent: Difference between revisions
< B2G | Bluetooth | WebBluetooth-v2
Jump to navigation
Jump to search
(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...") |
m (→Overview) |
||
| Line 1: | Line 1: | ||
== Overview == | == Overview == | ||
The BluetoothAddressEvent API provides access to a Bluetooth address when the adapterremoved or deviceunpaired event is fired. See [https://wiki.mozilla.org/B2G/Bluetooth/WebBluetooth-v2/BluetoothAdapter#adapterremoved BluetoothAdapter.adapterremoved] and [https://wiki.mozilla.org/B2G/Bluetooth/WebBluetooth-v2/BluetoothAdapter#deviceunpaired BluetoothAdapter.deviceunpaired] for more information. | The BluetoothAddressEvent API provides access to a Bluetooth address when the ''adapterremoved'' or ''deviceunpaired'' event is fired. See [https://wiki.mozilla.org/B2G/Bluetooth/WebBluetooth-v2/BluetoothAdapter#adapterremoved BluetoothAdapter.adapterremoved] and [https://wiki.mozilla.org/B2G/Bluetooth/WebBluetooth-v2/BluetoothAdapter#deviceunpaired BluetoothAdapter.deviceunpaired] for more information. | ||
== Interface == | == Interface == | ||
Revision as of 11:33, 5 March 2014
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