diff --git a/doc/adapter-api.txt b/doc/adapter-api.txt
index a72e9df..b638586 100644
--- a/doc/adapter-api.txt
+++ b/doc/adapter-api.txt
Interface org.bluez.Adapter
Object path [variable prefix]/{hci0,hci1,...}
-Methods dict GetProperties()
-
- Returns all properties for the adapter. See the
- properties section for available properties.
-
- Possible Errors: org.bluez.Error.NotReady
-
- void SetProperty(string name, variant value)
-
- Changes the value of the specified property. Only
- properties that are listed as read-write are changeable.
- On success this will emit a PropertyChanged signal.
-
- Possible Errors: org.bluez.Error.InvalidArguments
-
- void RequestSession()
+Methods void RequestSession()
This method requests a client session that provides
operational Bluetooth. A possible mode change must be
adapter to the mode in use on the moment of session
request.
- SetProperty method call changes adapter's mode
- persistently, such that session release will not
- modify it.
+ Setting the powered or discoverable properties
+ changes adapter's mode persistently, such that session
+ release will not modify it.
Possible Errors: org.bluez.Error.DoesNotExist
resolving. Use StopDiscovery to release the sessions
acquired.
- This process will start emitting DeviceFound and
+ This process will start emitting DevicesFound and
PropertyChanged "Discovering" signals.
Possible errors: org.bluez.Error.NotReady
Possible errors: org.bluez.Error.DoesNotExist
-Signals PropertyChanged(string name, variant value)
-
- This signal indicates a changed value of the given
- property.
-
- DevicesFound(array{object path, dict values})
+Signals DevicesFound(array{object path, dict values})
This signal will be sent every time devices have
been found. In general they only appear during a
diff --git a/doc/control-api.txt b/doc/control-api.txt
index 5391a8a..85b6442 100644
--- a/doc/control-api.txt
+++ b/doc/control-api.txt
Returns True if connected, otherwise FALSE.
- dict GetProperties()
-
- Returns all properties for the interface. See the
- properties section for available properties.
-
void Connect()
Connect to remote device.
diff --git a/doc/device-api.txt b/doc/device-api.txt
index 9623227..c1f2361 100644
--- a/doc/device-api.txt
+++ b/doc/device-api.txt
Interface org.bluez.Device
Object path [variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX
-Methods dict GetProperties()
-
- Returns all properties for the device. See the
- properties section for available properties.
-
- Possible Errors: org.bluez.Error.DoesNotExist
- org.bluez.Error.InvalidArguments
-
- void SetProperty(string name, variant value)
-
- Changes the value of the specified property. Only
- properties that are listed as read-write are changeable.
- On success this will emit a PropertyChanged signal.
-
- Possible Errors: org.bluez.Error.DoesNotExist
- org.bluez.Error.InvalidArguments
-
- dict DiscoverServices(string pattern)
+Methods dict DiscoverServices(string pattern)
This method starts the service discovery to retrieve
remote service records. The pattern parameter can
This method can be used to cancel a pairing
operation initiated by the Pair method.
-Signals PropertyChanged(string name, variant value)
-
- This signal indicates a changed value of the given
- property.
-
- DisconnectRequested()
+Signals DisconnectRequested()
This signal will be sent when a low level
disconnection to a remote device has been requested.
boolean Connected [readonly]
Indicates if the remote device is currently connected.
- A PropertyChanged signal indicate changes to this
+ A PropertiesChanged signal indicate changes to this
status.
boolean Trusted [readwrite]
convert it back to the remote device name.
When resetting the alias with an empty string, the
- emitted PropertyChanged signal will show the remote
+ emitted PropertiesChanged signal will show the remote
name again.
object Adapter [readonly]
diff --git a/doc/manager-api.txt b/doc/manager-api.txt
index 6efa58b..fe50556 100644
--- a/doc/manager-api.txt
+++ b/doc/manager-api.txt
Interface org.bluez.Manager
Object path /
-Methods dict GetProperties()
-
- Returns all global properties. See the
- properties section for available properties.
-
- Possible Errors: org.bluez.Error.DoesNotExist
- org.bluez.Error.InvalidArguments
-
object DefaultAdapter()
Returns object path for the default adapter.
Possible errors: org.bluez.Error.DoesNotExist
-Signals PropertyChanged(string name, variant value)
-
- This signal indicates a changed value of the given
- property.
-
- AdapterAdded(object adapter)
+Signals AdapterAdded(object adapter)
Parameter is object path of added adapter.