class Net::IMAP::BodyTypeMessage

  • size[rdoc-ref:BodyTypeBasic#size]
    * encoding[rdoc-ref:BodyTypeBasic#encoding]
    * description[rdoc-ref:BodyTypeBasic#description]
    * {content_id}[rdoc-ref:BodyTypeBasic#content_id]
    * param[rdoc-ref:BodyTypeBasic#param]
    * subtype[rdoc-ref:BodyTypeBasic#subtype]
    * {media_type}[rdoc-ref:BodyTypeBasic#media_type]
    BodyTypeBasic for documentation of the following fields:
    BodyTypeMessage contains all of the fields of BodyTypeBasic. See
    message/global.
    message parts, when Content-Type is message/rfc822 or
    Net::IMAP::BodyTypeMessage represents the body structures of messages and

def media_subtype

the value of +subtype+.
generate a warning message to +stderr+, then return
Obsolete: use +subtype+ instead. Calling this will
def media_subtype
  warn("media_subtype is obsolete, use subtype instead.\n", uplevel: 1)
  return subtype
end

def multipart?

BodyTypeMessage is not used for multipart MIME parts.

:call-seq: multipart? -> false
#
def multipart?
  return false
end