Class: Net::IMAP::BodyTypeText
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::BodyTypeText
- Includes:
- BodyStructure
- Defined in:
- lib/net/imap/response_data.rb
Overview
Net::IMAP::BodyTypeText represents the body structures of messages and message parts, when Content-Type
is text/*
.
BodyTypeText contains all of the fields of BodyTypeBasic. See BodyTypeBasic for documentation of the following:
Instance Attribute Summary collapse
-
#content_id ⇒ Object
Returns the value of attribute content_id.
-
#description ⇒ Object
Returns the value of attribute description.
-
#disposition ⇒ Object
Returns the value of attribute disposition.
-
#encoding ⇒ Object
Returns the value of attribute encoding.
-
#extension ⇒ Object
Returns the value of attribute extension.
-
#language ⇒ Object
Returns the value of attribute language.
-
#lines ⇒ Object
Returns the value of attribute lines.
-
#location ⇒ Object
Returns the value of attribute location.
-
#md5 ⇒ Object
Returns the value of attribute md5.
-
#media_type ⇒ Object
Returns the value of attribute media_type.
-
#param ⇒ Object
Returns the value of attribute param.
-
#size ⇒ Object
Returns the value of attribute size.
-
#subtype ⇒ Object
Returns the value of attribute subtype.
Instance Method Summary collapse
-
#media_subtype ⇒ Object
Obsolete: use
subtype
instead. -
#multipart? ⇒ Boolean
:call-seq: multipart? -> false.
Instance Attribute Details
#content_id ⇒ Object
Returns the value of attribute content_id
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def content_id @content_id end |
#description ⇒ Object
Returns the value of attribute description
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def description @description end |
#disposition ⇒ Object
Returns the value of attribute disposition
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def disposition @disposition end |
#encoding ⇒ Object
Returns the value of attribute encoding
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def encoding @encoding end |
#extension ⇒ Object
Returns the value of attribute extension
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def extension @extension end |
#language ⇒ Object
Returns the value of attribute language
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def language @language end |
#lines ⇒ Object
Returns the value of attribute lines
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def lines @lines end |
#location ⇒ Object
Returns the value of attribute location
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def location @location end |
#md5 ⇒ Object
Returns the value of attribute md5
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def md5 @md5 end |
#media_type ⇒ Object
Returns the value of attribute media_type
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def media_type @media_type end |
#param ⇒ Object
Returns the value of attribute param
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def param @param end |
#size ⇒ Object
Returns the value of attribute size
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 def size @size end |
#subtype ⇒ Object
Returns the value of attribute subtype
960 961 962 |
# File 'lib/net/imap/response_data.rb', line 960 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
.
986 987 988 989 |
# File 'lib/net/imap/response_data.rb', line 986 def media_subtype warn("media_subtype is obsolete, use subtype instead.\n", uplevel: 1) return subtype end |
#multipart? ⇒ Boolean
:call-seq: multipart? -> false
BodyTypeText is not used for multipart MIME parts.
979 980 981 |
# File 'lib/net/imap/response_data.rb', line 979 def multipart? return false end |