Function: dbus-introspect-get-argument

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

Signature

(dbus-introspect-get-argument BUS SERVICE PATH INTERFACE NAME ARG)

Documentation

Return argument ARG as XML object.

NAME must be a "method" or "signal" object. ARG must be a string and a member of the list returned by dbus-introspect-get-argument-names.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-introspect-get-argument (bus service path interface name arg)
  "Return argument ARG as XML object.
NAME must be a \"method\" or \"signal\" object.  ARG must be a
string and a member of the list returned by
`dbus-introspect-get-argument-names'."
  (dbus--introspect-name
   (or (dbus-introspect-get-method bus service path interface name)
       (dbus-introspect-get-signal bus service path interface name))
   'arg arg))