Function: dbus-introspect-get-signal

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

Signature

(dbus-introspect-get-signal BUS SERVICE PATH INTERFACE SIGNAL)

Documentation

Return signal SIGNAL of interface INTERFACE as an XML object.

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

Source Code

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