method

procdest

v1_8_7_72 - Show latest stable - Class: Net::HTTPResponse
procdest(dest, block)
private

No documentation available.

# File lib/net/http.rb, line 2244
    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