るりまサーチ

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

別のキーワード

  1. rexml/document new
  2. rexml/document write
  3. rexml/document to_s
  4. rexml/document clone
  5. rexml/document node_type

ライブラリ

クラス

キーワード

検索結果

Net::HTTPResponse#entity -> String | () | nil (23113.0)

エンティティボディを返します。

...メソッドはNet::ReadAdapter のインスタンスを返しますが、
これは使わないでください。

entity
は obsolete です。

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

uri = "http://www.example.com/index.html"
response = Net::HTTP.get_response(URI.parse(uri))
response.body[0..10]...

Net::HTTPUnprocessableEntity (14016.0)

HTTP レスポンス 422 (Unprocessable Entity) を表現するクラスです。

...HTTP レスポンス 422 (Unprocessable Entity) を表現するクラスです。

詳しくは 4918 を見てください。...

Net::HTTPRequestEntityTooLarge (14000.0)

HTTP レスポンス 413 (Payload Too Large) を表現するクラスです。

HTTP レスポンス 413 (Payload Too Large) を表現するクラスです。

詳しくは 7231 Section 6.5.11 を見てください。
Alias of Net::HTTPPayloadTooLarge

Net::HTTPResponse#body -> String | () | nil (8013.0)

エンティティボディを返します。

...メソッドはNet::ReadAdapter のインスタンスを返しますが、
これは使わないでください。

entity
は obsolete です。

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

uri = "http://www.example.com/index.html"
response = Net::HTTP.get_response(URI.parse(uri))
response.body[0..10]...