Function: dbus-introspect-get-argument-names

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

Signature

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

Documentation

Return a list of all argument names as a list of strings.

NAME must be a "method" or "signal" object.

Argument names are optional, the function can return nil therefore, even if the method or signal has arguments.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-introspect-get-argument-names (bus service path interface name)
  "Return a list of all argument names as a list of strings.
NAME must be a \"method\" or \"signal\" object.

Argument names are optional, the function can return nil
therefore, even if the method or signal has arguments."
  (dbus--introspect-names
   (or (dbus-introspect-get-method bus service path interface name)
       (dbus-introspect-get-signal bus service path interface name))
   'arg))