Class: Net::IMAP::UntaggedResponse

Inherits:
Struct
  • Object
show all
Defined in:
lib/net/imap.rb

Overview

Net::IMAP::UntaggedResponse represents untagged responses.

Data transmitted by the server to the client and status responses that do not indicate command completion are prefixed with the token "*", and are called untagged responses.

response_data   ::= "*" SPACE (resp_cond_state / resp_cond_bye /
                    mailbox_data / message_data / capability_data)

Fields:

name

Returns the name such as "FLAGS", "LIST", "FETCH"....

data

Returns the data such as an array of flag symbols,

a ((<Net::IMAP::MailboxList>)) object....
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



1471
1472
1473
# File 'lib/net/imap.rb', line 1471

def data
  @data
end

#nameObject

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



1471
1472
1473
# File 'lib/net/imap.rb', line 1471

def name
  @name
end

#raw_dataObject

Returns the value of attribute raw_data

Returns:

  • (Object)

    the current value of raw_data



1471
1472
1473
# File 'lib/net/imap.rb', line 1471

def raw_data
  @raw_data
end