Class: Net::IMAP::ContinuationRequest

Inherits:
Struct
  • Object
show all
Defined in:
lib/net/imap.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

Instance Attribute Details

#dataObject

Returns the value of attribute data

Returns:

  • (Object)

    the current value of data



1452
1453
1454
# File 'lib/net/imap.rb', line 1452

def data
  @data
end

#raw_dataObject

Returns the value of attribute raw_data

Returns:

  • (Object)

    the current value of raw_data



1452
1453
1454
# File 'lib/net/imap.rb', line 1452

def raw_data
  @raw_data
end