Class: Net::IMAP::ContinuationRequest
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::ContinuationRequest
- Defined in:
- lib/net/imap/response_data.rb
Overview
Net::IMAP::ContinuationRequest represents command continuation requests.
The command continuation request response is indicated by a “+” token instead of a tag. This form of response indicates that the server is ready to accept the continuation of a command from the client. The remainder of this response is a line of text.
continue_req ::= "+" SPACE (resp_text / base64)
Fields:
- data
-
Returns the data (Net::IMAP::ResponseText).
- raw_data
-
Returns the raw data string.
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#raw_data ⇒ Object
Returns the value of attribute raw_data.
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data
20 21 22 |
# File 'lib/net/imap/response_data.rb', line 20 def data @data end |
#raw_data ⇒ Object
Returns the value of attribute raw_data
20 21 22 |
# File 'lib/net/imap/response_data.rb', line 20 def raw_data @raw_data end |