Function: dbus-introspect-get-interface

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

Signature

(dbus-introspect-get-interface BUS SERVICE PATH INTERFACE)

Documentation

Return the INTERFACE of SERVICE in D-Bus BUS at object path PATH.

The return value is an XML object. INTERFACE must be a string and a member of the list returned by dbus-introspect-get-interface-names. The resulting
"interface" object can contain "method", "signal",
"property" and "annotation" children.

Source Code

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