B2G/Bluetooth/WebBluetooth-v2/BluetoothAddressEvent: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
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/BluetoothManager#onadapterremoved BluetoothManager.onadapterremoved] and [https://wiki.mozilla.org/B2G/Bluetooth/WebBluetooth-v2/BluetoothAdapter#ondeviceunpaired BluetoothAdapter.ondevicepaired] 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/BluetoothManager#onadapterremoved BluetoothManager.onadapterremoved] and [https://wiki.mozilla.org/B2G/Bluetooth/WebBluetooth-v2/BluetoothAdapter#ondeviceunpaired BluetoothAdapter.ondevicepaired] for more information.
This interface inherits from the [https://developer.mozilla.org/en-US/docs/Web/API/Event Event] interface.


== Interface ==
== Interface ==

Revision as of 01:40, 6 March 2014

Overview

The BluetoothAddressEvent API provides access to a Bluetooth address when the adapterremoved or deviceunpaired event is fired. See BluetoothManager.onadapterremoved and BluetoothAdapter.ondevicepaired for more information. This interface inherits from the Event interface.

Interface

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

Attributes

address

Description
A DOMString representing the Bluetooth address to access
Value type
DOMString
Default value
Empty string ("")