class Net::IMAP::BodyTypeText

Net::IMAP::BodyTypeText 表示消息和消息部分的 body 结构,当 Content-Typetext/* 时。

BodyTypeText 包含 BodyTypeBasic 的所有字段。有关以下内容的文档,请参阅 BodyTypeBasic

公共实例方法

lines → Integer 点击切换源代码

返回 body 的文本行大小。

# File net-imap-0.5.4/lib/net/imap/response_data.rb, line 973
      
media_subtype() 点击切换源代码

已过时:请使用 subtype 代替。调用此方法将在 stderr 中生成警告消息,然后返回 subtype 的值。

# File net-imap-0.5.4/lib/net/imap/response_data.rb, line 989
def media_subtype
  warn("media_subtype is obsolete, use subtype instead.\n",
       uplevel: 1, category: :deprecated)
  return subtype
end
multipart? → false 点击切换源代码

BodyTypeText 不用于多部分 MIME 部分。

# File net-imap-0.5.4/lib/net/imap/response_data.rb, line 982
def multipart?
  return false
end