72件ヒット
[1-72件を表示]
(0.090秒)
ライブラリ
- openssl (24)
- optparse (24)
-
webrick
/ httpresponse (24)
クラス
キーワード
-
add
_ status (12) - reason= (12)
-
reason
_ phrase= (12) - status (12)
- status= (12)
検索結果
先頭5件
-
OptionParser
:: ParseError # reason -> String (18108.0) -
エラーの内容を文字列で返します。
...エラーの内容を文字列で返します。
@return 文字列を返します。... -
OptionParser
:: ParseError # reason=(reason) (6215.0) -
エラーの内容を指定します。
...エラーの内容を指定します。
@param reason 文字列を指定します。... -
WEBrick
:: HTTPResponse # reason _ phrase=(val) (6152.0) -
HTTP のレスポンスの最初の行の reason phrase をセットします。 この値が nil の場合 reason phrase は status から生成されます。 デフォルトは nil です。
...HTTP のレスポンスの最初の行の reason phrase をセットします。
この値が nil の場合 reason phrase は status から生成されます。
デフォルトは nil です。
@param val reason phrase を表す文字列を指定します。
require 'webrick'
res = WEBrick::H......TTPResponse.new( { :HTTPVersion => "1.1" } )
res.status = 404
p res.reason_phrase #=> "Not Found"... -
OpenSSL
:: OCSP :: BasicResponse # add _ status(cid , status , reason , revtime , thisupd , nextupd , exts) -> self (150.0) -
証明書の状態の問い合わせの結果をオブジェクトに追加します。
...atus を見てください。
@param cid 問い合わせの(OpenSSL::OCSP::CertificateId オブジェクト)
@param status ステータスコード(整数)
@param reason 失効理由コード(整数)
@param revtime 失効時刻(Time オブジェクトもしくは nil)
@param thisupd 最終更新時......刻(Time オブジェクト)
@param nextupd 次回更新時刻(Time オブジェクト)
@param exts 拡張領域(OpenSSL::X509::Extension オブジェクトの配列)... -
WEBrick
:: HTTPResponse # status=(status) (29.0) -
レスポンスのステータスコードを整数で指定します。 reason_phrase も適切なものに設定されます。
...数で指定します。
reason_phrase も適切なものに設定されます。
@param status ステータスコードを整数で指定します。
require 'webrick'
res = WEBrick::HTTPResponse.new( { :HTTPVersion => "1.1" } )
res.status = 404
p res.reason_phrase #=> "Not Found"... -
OpenSSL
:: OCSP :: BasicResponse # status -> [[OpenSSL :: OCSP :: CertificateId , Integer , Integer , Time|nil , Time , Time|nil , [OpenSSL :: X509 :: Extension]]] (13.0) -
証明書の状態の問い合わせの結果を返します。
...tificate ID
# 0, # status code
# 0, # reason code
# nil, # revoked time
# 2011-06-29 05:24:43 UTC, # upd......ate time
# 2011-07-06 05:24:43 UTC, # next update time
# []] # extensions
# ]
@raise OpenSSL::OCSP::OCSPError ステータスの読み出しに失敗した場合に発生します...