Class: Sketchup::Http::Response
- Inherits:
-
Object
- Object
- Sketchup::Http::Response
Overview
Http::Response objects allows you to get the response information from the server, you can only receive the Http::Response if you have attached a callback block when calling start from the Http::Request object.
Instance Method Summary # collapse
-
#body ⇒ String
Gets the http body that was received from the server as a string encoded using the charset provided in the Content-Type of the server response, if no charset is specified, ASCII-8BIT will be used.
-
#headers ⇒ Hash
Returns the http headers that were sent by the server.
-
#status_code ⇒ Integer
Returns the HTTP response status code as defined in rfc2616.
Instance Method Details
↑ #body ⇒ String
Gets the http body that was received from the server as a string encoded using the charset provided in the Content-Type of the server response, if no charset is specified, ASCII-8BIT will be used.
↑ #headers ⇒ Hash
Returns the http headers that were sent by the server.
↑ #status_code ⇒ Integer
Returns the HTTP response status code as defined in rfc2616.