Function: dbus-introspect-get-property

dbus-introspect-get-property is a byte-compiled function defined in dbus.el.gz.

Signature

(dbus-introspect-get-property BUS SERVICE PATH INTERFACE PROPERTY)

Documentation

Return PROPERTY of INTERFACE as an XML object.

It must be located at SERVICE in D-Bus BUS at object path PATH. PROPERTY must be a string and a member of the list returned by dbus-introspect-get-property-names. The resulting PROPERTY object can contain "annotation" children.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-introspect-get-property (bus service path interface property)
  "Return PROPERTY of INTERFACE as an XML object.
It must be located at SERVICE in D-Bus BUS at object path PATH.
PROPERTY must be a string and a member of the list returned by
`dbus-introspect-get-property-names'.  The resulting PROPERTY
object can contain \"annotation\" children."
  (dbus--introspect-name
   (dbus-introspect-get-interface bus service path interface)
   'property property))