216件ヒット
[201-216件を表示]
(0.036秒)
種類
- インスタンスメソッド (180)
- 特異メソッド (24)
- ライブラリ (12)
ライブラリ
-
net
/ http (204)
クラス
-
Net
:: HTTP (24) -
Net
:: HTTPResponse (108)
モジュール
-
Net
:: HTTPExceptions (12) -
Net
:: HTTPHeader (60)
キーワード
- body (12)
- code (12)
- entity (12)
-
get
_ fields (12) -
http
_ version (12) - key? (12)
-
main
_ type (12) - msg (12)
-
read
_ body (24) - response (12)
-
sub
_ type (12) -
type
_ params (12) - value (12)
検索結果
-
Net
:: HTTPResponse # message -> String (8012.0) -
HTTP サーバがリザルトコードに付加して返すメッセージです。 例えば 'Not Found' などです。
...して返すメッセージです。
例えば 'Not Found' などです。
msg は obsolete です。使わないでください。
//emlist[例][ruby]{
require 'net/http'
uri = "http://www.example.com/index.html"
response = Net::HTTP.get_response(URI.parse(uri))
response.message # => "OK"
//}... -
Net
:: HTTPResponse # msg -> String (8012.0) -
HTTP サーバがリザルトコードに付加して返すメッセージです。 例えば 'Not Found' などです。
...して返すメッセージです。
例えば 'Not Found' などです。
msg は obsolete です。使わないでください。
//emlist[例][ruby]{
require 'net/http'
uri = "http://www.example.com/index.html"
response = Net::HTTP.get_response(URI.parse(uri))
response.message # => "OK"
//}...