Class: Net::IMAP::BodyTypeMultipart
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::BodyTypeMultipart
- Includes:
- BodyStructure
- Defined in:
- lib/net/imap/response_data.rb
Overview
Net::IMAP::BodyTypeMultipart represents body structures of messages and message parts, when Content-Type
is multipart/*
.
Instance Attribute Summary collapse
-
#disposition ⇒ Object
Returns the value of attribute disposition.
-
#extension ⇒ Object
Returns the value of attribute extension.
-
#language ⇒ Object
Returns the value of attribute language.
-
#location ⇒ Object
Returns the value of attribute location.
-
#media_type ⇒ Object
Returns the value of attribute media_type.
-
#param ⇒ Object
Returns the value of attribute param.
-
#parts ⇒ Object
Returns the value of attribute parts.
-
#subtype ⇒ Object
Returns the value of attribute subtype.
Instance Method Summary collapse
-
#media_subtype ⇒ Object
Obsolete: use
subtype
instead. -
#multipart? ⇒ Boolean
:call-seq: multipart? -> true.
Instance Attribute Details
#disposition ⇒ Object
Returns the value of attribute disposition
1116 1117 1118 |
# File 'lib/net/imap/response_data.rb', line 1116 def disposition @disposition end |
#extension ⇒ Object
Returns the value of attribute extension
1116 1117 1118 |
# File 'lib/net/imap/response_data.rb', line 1116 def extension @extension end |
#language ⇒ Object
Returns the value of attribute language
1116 1117 1118 |
# File 'lib/net/imap/response_data.rb', line 1116 def language @language end |
#location ⇒ Object
Returns the value of attribute location
1116 1117 1118 |
# File 'lib/net/imap/response_data.rb', line 1116 def location @location end |
#media_type ⇒ Object
Returns the value of attribute media_type
1116 1117 1118 |
# File 'lib/net/imap/response_data.rb', line 1116 def media_type @media_type end |
#param ⇒ Object
Returns the value of attribute param
1116 1117 1118 |
# File 'lib/net/imap/response_data.rb', line 1116 def param @param end |
#parts ⇒ Object
Returns the value of attribute parts
1116 1117 1118 |
# File 'lib/net/imap/response_data.rb', line 1116 def parts @parts end |
#subtype ⇒ Object
Returns the value of attribute subtype
1116 1117 1118 |
# File 'lib/net/imap/response_data.rb', line 1116 def subtype @subtype end |
Instance Method Details
#media_subtype ⇒ Object
Obsolete: use subtype
instead. Calling this will generate a warning message to stderr
, then return the value of subtype
.
1184 1185 1186 1187 |
# File '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 |
#multipart? ⇒ Boolean
:call-seq: multipart? -> true
BodyTypeMultipart is used for multipart MIME parts.
1176 1177 1178 |
# File 'lib/net/imap/response_data.rb', line 1176 def multipart? return true end |