method
send_quoted_string
![No documentation Importance_0](https://d2vfyqvduarcvs.cloudfront.net/images/importance_0.png?1349367920)
send_quoted_string(str)
private
Hide source
# File lib/net/imap.rb, line 1277 def send_quoted_string(str) put_string('"' + str.gsub(/["\\]/, "\\\\\\&") + '"') end