88件ヒット
[1-88件を表示]
(0.529秒)
クラス
キーワード
- [] (11)
- body (11)
-
content
_ type (11) - filename (11)
-
reason
_ phrase (11) -
request
_ method (11) -
status
_ line (11) -
to
_ s (11)
検索結果
先頭5件
-
WEBrick
:: HTTPResponse # [](field) -> String (203.0) -
レスポンスのヘッダの該当する内容を文字列で返します。
レスポンスのヘッダの該当する内容を文字列で返します。
@param field ヘッダ名を文字列で指定します。大文字と小文字を区別しません。
p res['date'] #=> "Sat, 27 Oct 2007 08:53:03 GMT" -
WEBrick
:: HTTPResponse # body -> String | IO (203.0) -
クライアントに返す内容(エンティティボディ)を返します。
クライアントに返す内容(エンティティボディ)を返します。
自身が chunked であっても body の値はチャンク形式ではありません。 -
WEBrick
:: HTTPResponse # content _ type -> String | nil (203.0) -
Content-Type ヘッダの値を返します。
Content-Type ヘッダの値を返します。 -
WEBrick
:: HTTPResponse # filename -> String | nil (203.0) -
自身の内容があるファイルのそれである場合に、そのファイル名を返します。 デフォルトは nil です。
自身の内容があるファイルのそれである場合に、そのファイル名を返します。
デフォルトは nil です。 -
WEBrick
:: HTTPResponse # reason _ phrase -> String | nil (203.0) -
HTTP のレスポンスの最初の行の reason phrase を返します。 この値が nil の場合 reason phrase は status から生成されます。 デフォルトは nil です。
HTTP のレスポンスの最初の行の reason phrase を返します。
この値が nil の場合 reason phrase は status から生成されます。
デフォルトは nil です。 -
WEBrick
:: HTTPResponse # request _ method -> String | nil (203.0) -
リクエストの HTTP メソッドを返します。
リクエストの HTTP メソッドを返します。 -
WEBrick
:: HTTPResponse # status _ line -> String (203.0) -
HTTP のステータスラインを CR+LF 付き文字列で返します。
HTTP のステータスラインを CR+LF 付き文字列で返します。
require 'webrick'
res = WEBrick::HTTPResponse.new( { :HTTPVersion => "1.1" } )
res.status = 404
p res.status_line #=> "HTTP/1.1 404 Not Found \r\n" -
WEBrick
:: HTTPResponse # to _ s -> String (203.0) -
実際にクライアントに送られるデータを文字列として返します。
...列として返します。
require 'webrick'
include WEBrick
res = HTTPResponse.new( { :HTTPVersion => "1.1" } )
res.body = 'hoge'
print res.to_s
#=> 出力結果
HTTP/1.1 200 OK
Connection: Keep-Alive
Date: Sat, 27 Oct 2007 08:58:49 GMT
Server:
Content-Length: 4
hoge...