Class: Net::HTTPRequest
- Inherits:
-
HTTPGenericRequest
- Object
- HTTPGenericRequest
- Net::HTTPRequest
- Defined in:
- lib/net/http.rb
Overview
HTTP request class. This class wraps request header and entity path. You must use its subclass, Net::HTTP::Get, Post, Head.
Instance Attribute Summary
Attributes inherited from HTTPGenericRequest
#body, #body_stream, #method, #path
Instance Method Summary (collapse)
-
- (HTTPRequest) initialize(path, initheader = nil)
constructor
Creates HTTP request object.
Methods inherited from HTTPGenericRequest
#body_exist?, #exec, #inspect, #request_body_permitted?, #response_body_permitted?, #set_body_internal
Methods included from HTTPHeader
#[], #[]=, #add_field, #basic_auth, #chunked?, #connection_close?, #connection_keep_alive?, #content_length, #content_length=, #content_range, #content_type, #delete, #each_capitalized, #each_capitalized_name, #each_header, #each_name, #each_value, #fetch, #get_fields, #initialize_http_header, #key?, #main_type, #proxy_basic_auth, #range, #range_length, #set_content_type, #set_form_data, #set_range, #size, #sub_type, #to_hash, #type_params
Constructor Details
- (HTTPRequest) initialize(path, initheader = nil)
Creates HTTP request object.
1780 1781 1782 1783 1784 1785 |
# File 'lib/net/http.rb', line 1780 def initialize(path, initheader = nil) super self.class::METHOD, self.class::REQUEST_HAS_BODY, self.class::RESPONSE_HAS_BODY, path, initheader end |