るりまサーチ (Ruby 2.4.0)

最速Rubyリファレンスマニュアル検索!
17件ヒット [1-17件を表示] (0.075秒)
トップページ > クエリ:I[x] > クエリ:IO[x] > クエリ:d[x] > バージョン:2.4.0[x] > ライブラリ:net/imap[x]

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. matrix i
  5. csv to_i

検索結果

Net::IMAP::BodyTypeBasic#disposition -> Net::IMAP::ContentDisposition | nil (55807.0)

Content-Dispotition の値を返します。

Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183

Net::IMAP::BodyTypeMessage#disposition -> Net::IMAP::ContentDisposition | nil (55807.0)

Content-Dispotition の値を返します。

Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183

Net::IMAP::BodyTypeMultipart#disposition -> Net::IMAP::ContentDisposition | nil (55807.0)

Content-Dispotition の値を返します。

Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183

Net::IMAP::BodyTypeText#disposition -> Net::IMAP::ContentDisposition | nil (55807.0)

Content-Dispotition の値を返します。

Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183

Net::IMAP::BodyTypeBasic#description -> String | nil (54907.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

絞り込み条件を変える

Net::IMAP::BodyTypeMessage#description -> String | nil (54907.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

Net::IMAP::BodyTypeText#description -> String | nil (54907.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

Net::IMAP::ContentDisposition (54007.0)

1806, 2183 で定義されている MIME の Content-Disposition フィールドを表すクラスです。

1806, 2183 で定義されている MIME の
Content-Disposition フィールドを表すクラスです。

Net::IMAP::BodyTypeBasic#extension -> Array | nil (45607.0)

メッセージの拡張データを返します。

メッセージの拡張データを返します。

Net::IMAP::BodyTypeMessage#extension -> Array | nil (45607.0)

メッセージの拡張データを返します。

メッセージの拡張データを返します。

絞り込み条件を変える

Net::IMAP::BodyTypeMultipart#extension -> Array | nil (45607.0)

メッセージの拡張データを返します。

メッセージの拡張データを返します。

Net::IMAP::BodyTypeText#extension -> Array | nil (45607.0)

メッセージの拡張データを返します。

メッセージの拡張データを返します。

Net::IMAP::ContentDisposition#dsp_type -> String (36607.0)

Content-Disposition フィールドのタイプを文字列で返します。

Content-Disposition フィールドのタイプを文字列で返します。

"INLINE", "ATTACHMENT" などの文字列を返します。

詳しくは 2183 などを見てください。

Net::IMAP::ContinuationRequest#data -> Net::IMAP::ResponseText (36607.0)

レスポンスのデータを返します。

レスポンスのデータを返します。

Net::IMAP::ContinuationRequest#raw_data -> String (36607.0)

レスポンス文字列を返します。

レスポンス文字列を返します。

絞り込み条件を変える

Net::IMAP::ContentDisposition#param -> { String => String } | nil (27607.0)

Content-Disposition フィールドのパラメータをハッシュテーブルで 返します。

Content-Disposition フィールドのパラメータをハッシュテーブルで
返します。

ハッシュテーブルのキーは以下のような値を取ります。詳しくは
2183 などを見てください。
* "FILENAME"
* "CREATION-DATE"
* "MODIFICATION-DATE"
* "READ-DAT"
* "SIZE"

Net::IMAP#starttls(options) -> Net::IMAP::TaggedResponse (9907.0)

STARTTLS コマンドを送って TLS のセッションを開始します。

STARTTLS コマンドを送って TLS のセッションを開始します。

options で openssl に渡すオプションを指定します。
OpenSSL::SSL::SSLContext#set_params の引数と同じ意味です。

互換性のため、certs で証明書or証明書ディレクトリのファイル名(文字列)、
verify で検証するかどうか(Net::IMAP::VERIFY_PEER、
Net::IMAP::VERIFY_NONEに対応します)を
指定することができます。

@param options SSL/TLS のオプション(Hash オブジェクト)
@param ce...