Not found

The exact documentation you were looking for could not be found. Here is the best guess.

new(httpv, code, msg) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/net/http/response.rb, line 76
  def initialize(httpv, code, msg)   #:nodoc: internal use only
    @http_version = httpv
    @code         = code
    @message      = msg
    initialize_http_header nil
    @body = nil
    @read = false
    @uri  = nil
    @decode_content = false
  end
Register or log in to add new notes.