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