るりまサーチ

最速Rubyリファレンスマニュアル検索!
48件ヒット [1-48件を表示] (0.071秒)

別のキーワード

  1. net/http body
  2. httpresponse body
  3. httprequest body
  4. net/http read_body
  5. httpresponse read_body

検索結果

Net::IMAP::BodyTypeBasic#encoding -> String (21118.0)

Content-Transfer-Encoding の値を文字列で返します。

...Content-Transfer-Encoding の値を文字列で返します。

@see 2045...

Net::IMAP::BodyTypeMessage#encoding -> String (21118.0)

Content-Transfer-Encoding の値を文字列で返します。

...Content-Transfer-Encoding の値を文字列で返します。

@see 2045...

Net::IMAP::BodyTypeText#encoding -> String (21118.0)

Content-Transfer-Encoding の値を文字列で返します。

...Content-Transfer-Encoding の値を文字列で返します。

@see 2045...

WEBrick::HTTPResponse#chunked=(flag) (13.0)

真に設定するとクライアントに返す内容(エンティティボディ)を chunk に分けるようになります。

...ick'
include WEBrick
res = HTTPResponse.new( { :HTTPVersion => "1.1" } )
res.body = 'hoge'
res.chunked = true
print res.to_s

#=> 出力結果
HTTP/1.1 200 OK
Connection: Keep-Alive
Date: Sat, 27 Oct 2007 09:04:28 GMT
Server:
Transfer-Encoding: chunked

4
hoge
0

#...