Function: dbus-introspect-get-attribute
dbus-introspect-get-attribute is a byte-compiled function defined in
dbus.el.gz.
Signature
(dbus-introspect-get-attribute OBJECT ATTRIBUTE)
Documentation
Return the ATTRIBUTE value of D-Bus introspection OBJECT.
ATTRIBUTE must be a string according to the attribute names in the D-Bus specification.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-introspect-get-attribute (object attribute)
"Return the ATTRIBUTE value of D-Bus introspection OBJECT.
ATTRIBUTE must be a string according to the attribute names in
the D-Bus specification."
(xml-get-attribute-or-nil object (intern attribute)))