Furl-0.24 > Furl-0.24/lib/Furl/Response
概要¶
my $res = Furl::Response->new($minor_version, $code, $message, $headers, $content);
print $res->status, "\n";
説明¶
This is a HTTP response object in Furl.
これはFurl の HTTPレスポンスオブジェクトです。
コンストラクタ¶
my $res = Furl::Response->new($minor_version, $code, $msg, \%headers, $content);
インスタンスメソッド¶
- $res->code
- $res->status
-
Returns HTTP status code.
HTTPステータスコードを返します。
- $res->message
-
Returns HTTP status message.
HTTPステータスメッセージを返します。
- $res->headers
-
Returns instance of Furl::Headers
Furl::Headersのインスタンスを返します。
- $res->content
- $res->body
-
Returns response body in scalar.
レスポンスボディーをスカラで返します。
- $res->content_length
- $res->content_type
- $res->content_encoding
- $res->header
-
Shorthand to access Furl::Headers.
Furl::Headersへアクセスするためのショートハンドです。
- $res->protocol
-
$res->protocol(); # => "HTTP/1.1"
Returns HTTP protocol in string.
HTTP プロトコルを文字列で返します。
- $res->as_http_response
-
Make instance of HTTP::Response from Furl::Response.
Furl::ResponseからHTTP::Responseのインスタンスを作ります。
- $res->is_success
-
Returns true if status code is 2xx.
ステータスコードが2xxであれば、真を返します。
- $res->status_line
-
$res->status_line() # => "200 OK"
Returns status line.
ステータスラインを返します。