/usr/share/doc/neard/manager-api.txt is in neard-dev 0.11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | Manager hierarchy
=================
Service org.neard
Interface org.neard.Manager
Object path /
Methods dict GetProperties()
Returns all properties for the device. See the
properties section for available properties.
Possible Errors: org.neard.Error.DoesNotExist
void SetProperty(string name, variant value)
Changes the value of the specified property. Only
properties that are listed a read-write are changeable.
On success this will emit a PropertyChanged signal.
Possible Errors: org.neard.Error.DoesNotExist
org.neard.Error.InvalidArguments
void RegisterHandoverAgent(object path, string carrier)
Register new handover agent.
Supported carriers are: 'bluetooth', 'wifi'.
Only one registration will be accepted per carrier.
Possible Errors: org.neard.Error.InvalidArguments
org.neard.Error.AlreadyExists.
void UnregisterHandoverAgent(object path, string carrier)
Unregister an existing handover agent.
Possible Errors: org.neard.Error.InvalidArguments
void RegisterNDEFAgent(object path, string type)
Register new NDEF agent.
When a record matching the registered type is found,
the agent will get the whole NDEF as a raw byte stream.
Possible Errors: org.neard.Error.InvalidArguments
void UnregisterNDEFAgent(object path, string type)
Unregister an existing NDEF agent.
Possible Errors: org.neard.Error.InvalidArguments
Signals PropertyChanged(string name, variant value)
This signal indicates a changed value of the given
property.
AdapterAdded(object adapter)
Parameter is the object path of added adapter.
AdapterRemoved(object adapter)
Parameter is the object path of removed adapter.
Properties array{object} Adapters [readonly]
List of adapter object paths.
|