method
procdest
procdest(dest, block)
private
Hide source
# File lib/net/http.rb, line 2366 def procdest(dest, block) raise ArgumentError, 'both arg and block given for HTTP method' if dest and block if block ReadAdapter.new(block) else dest || '' end end