24件ヒット
[1-24件を表示]
(0.146秒)
クラス
-
DRb
:: DRbServer (12) -
Net
:: HTTPResponse (12)
検索結果
-
DRb
:: DRbServer # uri -> String|nil (21420.0) -
サーバに紐付けられた URI を返します。
...サーバに紐付けられた URI を返します。... -
Net
:: HTTPResponse # http _ version -> String (12421.0) -
サーバがサポートしている HTTP のバージョンを文字列で返します。
...サーバがサポートしている HTTP のバージョンを文字列で返します。
//emlist[例][ruby]{
require 'net/http'
uri = "http://www.example.com/index.html"
response = Net::HTTP.get_response(URI.parse(uri))
response.http_version # => "1.1"
//}...