Class: Net::IMAP::Namespace
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::Namespace
- Defined in:
- lib/net/imap/response_data.rb
Overview
Net::IMAP::Namespace represents a single [RFC-2342] namespace.
Namespace = nil / "(" 1*( "(" string SP (<"> QUOTED_CHAR <"> /
nil) *(Namespace_Response_Extension) ")" ) ")"
Namespace_Response_Extension = SP string SP "(" string *(SP string)
")"
Fields:
- prefix
-
Returns the namespace prefix string.
- delim
-
Returns nil or the hierarchy delimiter character.
- extensions
-
Returns a hash of extension names to extension flag arrays.
Instance Attribute Summary collapse
-
#delim ⇒ Object
Returns the value of attribute delim.
-
#extensions ⇒ Object
Returns the value of attribute extensions.
-
#prefix ⇒ Object
Returns the value of attribute prefix.
Instance Attribute Details
#delim ⇒ Object
Returns the value of attribute delim
204 205 206 |
# File 'lib/net/imap/response_data.rb', line 204 def delim @delim end |
#extensions ⇒ Object
Returns the value of attribute extensions
204 205 206 |
# File 'lib/net/imap/response_data.rb', line 204 def extensions @extensions end |
#prefix ⇒ Object
Returns the value of attribute prefix
204 205 206 |
# File 'lib/net/imap/response_data.rb', line 204 def prefix @prefix end |