method
    
    send_quoted_string
  send_quoted_string(str)
  private
  
    Hide source    
    
      
  
# File lib/net/imap.rb, line 1292 def send_quoted_string(str) put_string('"' + str.gsub(/["\\]/, "\\\\\\&") + '"') end

  
  
  