method
procdest
v2_6_3 -
Show latest stable
- Class:
Net::HTTPResponse
procdest(dest, block)private
No documentation available.
# File lib/net/http/response.rb, line 336
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