444件ヒット
[201-300件を表示]
(0.079秒)
クラス
- CSV (36)
-
CSV
:: FieldInfo (12) -
URI
:: MailTo (24)
モジュール
-
Net
:: HTTPHeader (372)
キーワード
- [] (12)
- []= (12)
-
basic
_ auth (12) - chunked? (12)
-
content
_ length (12) -
content
_ length= (12) -
content
_ range (12) -
content
_ type (12) -
content
_ type= (12) - convert (36)
- delete (12)
- each (12)
-
each
_ capitalized _ name (12) -
each
_ header (12) -
each
_ key (12) -
each
_ name (12) -
each
_ value (12) - fetch (36)
-
form
_ data= (12) -
get
_ fields (12) - headers (12)
- headers= (12)
- key? (12)
-
main
_ type (12) - method (12)
-
proxy
_ basic _ auth (12) - range (12)
-
range
_ length (12) -
set
_ content _ type (12) -
set
_ form _ data (12) -
sub
_ type (12) -
type
_ params (12)
検索結果
先頭5件
-
Net
:: HTTPHeader # chunked? -> bool (3007.0) -
Transfer-Encoding: ヘッダフィールドが "chunked" である 場合に真を返します。
...ルドが存在しなかったり、
"chunked" 以外である場合には偽を返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.chunked? # => false
req["Transfer-Encoding"] = "chunked"
req.ch... -
Net
:: HTTPHeader # content _ length -> Integer|nil (3007.0) -
Content-Length: ヘッダフィールドの表している値を整数で返します。
...いない場合には nil を返します。
@raise Net::HTTPHeaderSyntaxError フィールドの値が不正である場合に
発生します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.ne... -
Net
:: HTTPHeader # content _ length=(len) (3007.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
re... -
Net
:: HTTPHeader # content _ range -> Range|nil (3007.0) -
Content-Range: ヘッダフィールドの値を Range で返します。 Range の表わす長さは Net::HTTPHeader#range_length で得られます。
...Range で返します。
Range の表わす長さは Net::HTTPHeader#range_length で得られます。
ヘッダが設定されていない場合には nil を返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(ur... -
Net
:: HTTPHeader # content _ type -> String|nil (3007.0) -
"text/html" のような Content-Type を表す 文字列を返します。
...Content-Type: ヘッダフィールドが存在しない場合には nil を返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/comments.cgi?post=comment')
req = Net::HTTP::Post.new(uri.request_uri)
req.content_type # => nil
req.content_type = 'multip... -
Net
:: HTTPHeader # content _ type=(type) (3007.0) -
type と params から Content-Type: ヘッダフィールドの 値を設定します。
...で指定します。
@param params パラメータ属性をハッシュで指定します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.content_type # => nil
req.content_type =... -
Net
:: HTTPHeader # delete(key) -> [String] | nil (3007.0) -
key ヘッダフィールドを削除します。
...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("Con... -
Net
:: HTTPHeader # each _ key {|name| . . . } -> () (3007.0) -
保持しているヘッダ名をブロックに渡して呼びだします。
...ブロックに渡して呼びだします。
ヘッダ名は小文字で統一されます。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.each_name { |name| puts name }
# => accept-encoding
# => accep... -
Net
:: HTTPHeader # each _ name {|name| . . . } -> () (3007.0) -
保持しているヘッダ名をブロックに渡して呼びだします。
...ブロックに渡して呼びだします。
ヘッダ名は小文字で統一されます。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.each_name { |name| puts name }
# => accept-encoding
# => accep...