Function: icalendar-match-method-property

icalendar-match-method-property is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-match-method-property LIMIT)

Documentation

Matcher for icalendar-method property.

(Defined by icalendar-define-property.)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:method "METHOD"
  "Method for a scheduling request.

When an `icalendar-vcalendar' is sent in a MIME message, this property
specifies the semantics of the request in the message: e.g. it is
a request to publish the calendar object, or a reply to an
invitation.  This property and the MIME message's \"method\"
parameter value must be the same.

RFC5545 does not define any methods, but RFC5546 does; see
URL `https://www.rfc-editor.org/rfc/rfc5546.html#section-3.2'"
  ;; TODO: implement methods in RFC5546?
  ical:iana-token
  :child-spec (:zero-or-more (ical:otherparam))
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.7.2")