るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.062秒)
トップページ > クエリ:body=[x] > クエリ:content_length=[x]

別のキーワード

  1. rss title=
  2. rss date=
  3. rss link=
  4. rss description=
  5. rss content=

ライブラリ

クラス

検索結果

WEBrick::HTTPResponse#content_length=(len) (15112.0)

Content-Length ヘッダの値を整数で表すアクセサです。デフォルトは nil です。

...ん。

require 'webrick'
include WEBrick
res = HTTPResponse.new( { :HTTPVersion => "1.1" } )
f = File.new('testfile')
res.body = f
res.content_length = 2
print res.to_s

#=> 出力結果
HTTP/1.1 200 OK
Connection: Keep-Alive
Date: Sat, 27 Oct 2007 12:04:32 GMT
Server:
C...

WEBrick::HTTPResponse#content_length -> Integer | nil (12.0)

Content-Length ヘッダの値を整数で表すアクセサです。デフォルトは nil です。

...ん。

require 'webrick'
include WEBrick
res = HTTPResponse.new( { :HTTPVersion => "1.1" } )
f = File.new('testfile')
res.body = f
res.content_length = 2
print res.to_s

#=> 出力結果
HTTP/1.1 200 OK
Connection: Keep-Alive
Date: Sat, 27 Oct 2007 12:04:32 GMT
Server:
C...