るりまサーチ

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

別のキーワード

  1. rss content
  2. rss content=
  3. net/imap content_id
  4. item content=
  5. source content=

ライブラリ

モジュール

キーワード

検索結果

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

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

...
content_length
の値が nil のとき Content-Length ヘッダには
body のサイズが使われます。nil でないとき body の実際のサイズとこの値が同じかどうかの検証は行われません。
: body が IO オブジェクトである場合
content_length
の値...
...。nil でないとき IO から content_length バイトだけ読み込みそれを
エンティティボディとします。

また 2616 4.4 で定められた Content-Length ヘッダを送ってはいけない場合に当てはまる時には
content_length
の値は無視され Content-Leng...
...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:
Content...

Net::HTTPHeader#content_length -> Integer|nil (18120.0)

Content-Length: ヘッダフィールドの表している値を整数で返します。

...正である場合に
発生します。

//emlist[例][ruby]{
require 'net/http'

uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.content_length # => nil
req.content_length = 10
req.content_length # => 10
//}...

CGI::QueryExtension#content_length -> Integer (18118.0)

ENV['CONTENT_LENGTH'] を返します。

...ENV['CONTENT_LENGTH'] を返します。...

WEBrick::HTTPRequest#content_length -> Integer (18102.0)

リクエストの Content-Length ヘッダの値を整数で返します。リクエストに Content-Length ヘッダ が含まれていない場合は 0 を返します。

リクエストの Content-Length ヘッダの値を整数で返します。リクエストに Content-Length ヘッダ
が含まれていない場合は 0 を返します。

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

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

...
content_length
の値が nil のとき Content-Length ヘッダには
body のサイズが使われます。nil でないとき body の実際のサイズとこの値が同じかどうかの検証は行われません。
: body が IO オブジェクトである場合
content_length
の値...
...。nil でないとき IO から content_length バイトだけ読み込みそれを
エンティティボディとします。

また 2616 4.4 で定められた Content-Length ヘッダを送ってはいけない場合に当てはまる時には
content_length
の値は無視され Content-Leng...
...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:
Content...

絞り込み条件を変える

Net::HTTPHeader#content_length=(len) (6120.0)

Content-Length: ヘッダフィールドに値を設定します。

...

@param len 設定する値を整数で与えます。

//emlist[例][ruby]{
require 'net/http'

uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.content_length # => nil
req.content_length = 10 # => 10
req.content_length # => 10
//}...

Net::HTTPHeader#delete(key) -> [String] | nil (19.0)

key ヘッダフィールドを削除します。

...
nil を返します。

//emlist[例][ruby]{
require 'net/http'

uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.content_length = 10
req.content_length # => 10
req.delete("Content-Length") # => ["10"]
req.content_length # => nil
//}...

WEBrick::HTTPResponse#[]=(field, val) (7.0)

レスポンスの該当するヘッダに val を設定します。

...せん。

@param val ヘッダの値を指定します。to_s メソッドによって文字列に変換されます。

require 'time'
res['last-modified'] = Time.now.httpdate

@see WEBrick::HTTPResponse#chunked?, WEBrick::HTTPResponse#content_length,
WEBrick::HTTPResponse#content_type...