908件ヒット
[1-100件を表示]
(0.015秒)
種類
- インスタンスメソッド (740)
- クラス (132)
- 特異メソッド (36)
クラス
-
Net
:: IMAP (404) -
Net
:: IMAP :: BodyTypeBasic (48) -
Net
:: IMAP :: BodyTypeMessage (48) -
Net
:: IMAP :: BodyTypeMultipart (24) -
Net
:: IMAP :: BodyTypeText (48) -
Net
:: IMAP :: ContentDisposition (24) -
Net
:: IMAP :: ContinuationRequest (24) -
Net
:: IMAP :: ResponseCode (24) -
Net
:: IMAP :: ResponseError (24) -
Net
:: IMAP :: ResponseText (24) -
Net
:: IMAP :: TaggedResponse (48) -
Net
:: IMAP :: UntaggedResponse (36)
キーワード
- BadResponseError (12)
- ByeResponseError (12)
- ContentDisposition (12)
- ContinuationRequest (12)
- NoResponseError (12)
- ResponseCode (12)
- ResponseError (12)
- ResponseParseError (12)
- ResponseText (12)
- TaggedResponse (12)
- UntaggedResponse (12)
-
add
_ response _ handler (24) - append (12)
- authenticate (12)
- check (12)
- close (12)
- code (12)
-
content
_ id (36) - copy (12)
- create (12)
- data (48)
- debug (12)
- debug= (12)
- delete (12)
- description (36)
- disconnect (12)
- disconnected? (12)
- disposition (48)
-
dsp
_ type (12) - examine (12)
- extension (48)
- greeting (12)
- idle (12)
-
idle
_ done (12) - login (12)
- logout (12)
- move (10)
- name (36)
- new (12)
- noop (12)
- param (12)
-
raw
_ data (36) -
remove
_ response _ handler (12) - rename (12)
- response (12)
- response= (12)
-
response
_ handlers (12) - responses (12)
- select (12)
- setquota (12)
- starttls (24)
- subscribe (12)
- tag (12)
- text (12)
-
uid
_ copy (12) -
uid
_ move (10) - unsubscribe (12)
検索結果
先頭5件
-
Net
:: IMAP :: ContentDisposition (12002.0) -
1806, 2183 で定義されている MIME の Content-Disposition フィールドを表すクラスです。
...1806, 2183 で定義されている MIME の
Content-Disposition フィールドを表すクラスです。... -
Net
:: IMAP :: ContinuationRequest (12002.0) -
IMAP の continuation request (命令継続要求) を表すクラスです。
...IMAP の continuation request (命令継続要求) を表すクラスです。
通常このクラスを直接扱うことはありません。
レスポンスハンドラ(Net::IMAP#add_response_handler)
に渡されます。
詳しくは 2060 の 7.5 を参照してください。... -
Net
:: IMAP :: ResponseError # response -> Net :: IMAP :: TaggedResponse | Net :: IMAP :: UntaggedResponse (9302.0) -
エラーとなったレスポンスを表すオブジェクトを返します。
エラーとなったレスポンスを表すオブジェクトを返します。 -
Net
:: IMAP :: ResponseError # response=(resp) (9102.0) -
エラーとなったレスポンスを表すオブジェクトを設定します。
エラーとなったレスポンスを表すオブジェクトを設定します。
@param resp 設定するレスポンスオブジェクト -
Net
:: IMAP :: BodyTypeBasic # disposition -> Net :: IMAP :: ContentDisposition | nil (6302.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeMessage # disposition -> Net :: IMAP :: ContentDisposition | nil (6302.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeMultipart # disposition -> Net :: IMAP :: ContentDisposition | nil (6302.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeText # disposition -> Net :: IMAP :: ContentDisposition | nil (6302.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP # add _ response _ handler(handler) -> () (6102.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...