るりまサーチ

最速Rubyリファレンスマニュアル検索!
1820件ヒット [1-100件を表示] (0.057秒)

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. dh p
  5. rsa p

キーワード

検索結果

<< 1 2 3 ... > >>

Net::IMAP::ResponseError#response -> Net::IMAP::TaggedResponse | Net::IMAP::UntaggedResponse (6303.0)

エラーとなったレスポンスを表すオブジェクトを返します。

エラーとなったレスポンスを表すオブジェクトを返します。

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

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

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

@see 1806, 2183...

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

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

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

@see 1806, 2183...

Net::IMAP::BodyTypeMessage#envelope -> Net::IMAP::Envelpe | nil (6203.0)

メッセージのエンベロープを返します。

メッセージのエンベロープを返します。

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

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

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

@see 1806, 2183...

絞り込み条件を変える

Net::IMAP::BodyTypeMultipart#parts -> [Net::IMAP::BodyTypeBasic | Net::IMAP::BodyTypeText | Net::IMAP::BodyTypeMessage | Net::IMAP::BodyTypeMultipart] (6203.0)

マルチパートの各部分を返します。

マルチパートの各部分を返します。

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

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

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

@see 1806, 2183...

Net::IMAP#responses -> { String => [object] } (6115.0)

サーバから送られてきた untagged な応答の記録を返します。

...なります。
そして各種類ごとに配列が用意され、untagged な応答を受信するたびに
その配列の末尾にその内容が記録されます。


例:
imap.select("inbox")
p
imap.responses["EXISTS"].last
#=> 2
p
imap.responses["UIDVALIDITY"].last
#=> 968263756...

Net::IMAP#add_response_handler(handler) -> () (6109.0)

レスポンスハンドラを追加します。

...ポンスハンドラはサーバから応答を受け取るごとに
呼びだされます。ハンドラには
Net::IMAP::TaggedResponse もしくは
Net::IMAP::UntaggedResponse オブジェクトが
渡されます。

主にサーバからの非同期的なイベントを受け取るため
...
...ンドラはメインのスレッドとは別のスレッドで
呼びだされることに注意してください。

例:

imap.add_response_handler do |resp|
p
resp
end

@param handler 追加するハンドラ(Proc や Method オブジェクト)
@see Net::IMAP#remove_response_handler...
<< 1 2 3 ... > >>