Function: secrets-get-collection-property

secrets-get-collection-property is a byte-compiled function defined in secrets.el.gz.

Signature

(secrets-get-collection-property COLLECTION-PATH PROPERTY)

Documentation

Return property PROPERTY of collection identified by COLLECTION-PATH.

Source Code

;; Defined in /usr/src/emacs/lisp/net/secrets.el.gz
(defun secrets-get-collection-property (collection-path property)
  "Return property PROPERTY of collection identified by COLLECTION-PATH."
  (unless (or (secrets-empty-path collection-path) (not (stringp property)))
    (dbus-get-property
     :session secrets-service collection-path
     secrets-interface-collection property)))