class Net::IMAP::BodyTypeMultipart
Net::IMAP::BodyTypeMultipart represents body structures of messages and message parts, when Content-Type is multipart/*.
Public Instance Methods
Returns a Net::IMAP::ContentDisposition object giving the content disposition.
# File net-imap-0.4.9.1/lib/net/imap/response_data.rb, line 1151
      
                              Returns extension data as an array of numbers strings, and nested arrays (of numbers, strings, etc).
# File net-imap-0.4.9.1/lib/net/imap/response_data.rb, line 1166
      
                              Returns a string or an array of strings giving the body language value as defined in [LANGUAGE-TAGS].
# File net-imap-0.4.9.1/lib/net/imap/response_data.rb, line 1158
      
                              Obsolete: use subtype instead.  Calling this will generate a warning message to stderr, then return the value of subtype.
# File net-imap-0.4.9.1/lib/net/imap/response_data.rb, line 1184 def media_subtype warn("media_subtype is obsolete, use subtype instead.\n", uplevel: 1) return subtype end
BodyTypeMultipart is only used with multipart/* media types.
# File net-imap-0.4.9.1/lib/net/imap/response_data.rb, line 1124
      
                              BodyTypeMultipart is used for multipart MIME parts.
# File net-imap-0.4.9.1/lib/net/imap/response_data.rb, line 1176 def multipart? return true end
Returns a hash that represents parameters as defined in [MIME-IMB].
# File net-imap-0.4.9.1/lib/net/imap/response_data.rb, line 1144
      
                              Returns an array with a BodyStructure object for each part contained in this part.
# File net-imap-0.4.9.1/lib/net/imap/response_data.rb, line 1137
      
                              Returns the content subtype name as defined in [MIME-IMB].
# File net-imap-0.4.9.1/lib/net/imap/response_data.rb, line 1130