method
send_literal
send_literal(str)
private
Hide source
# File lib/net/imap.rb, line 1296 def send_literal(str) put_string("{" + str.bytesize.to_s + "}" + CRLF) @continuation_request_arrival.wait raise @exception if @exception put_string(str) end