981件ヒット
[1-100件を表示]
(0.098秒)
ライブラリ
- ビルトイン (213)
-
net
/ http (24) -
net
/ imap (180) - openssl (96)
- socket (216)
-
webrick
/ cgi (12) -
webrick
/ httpauth / basicauth (60) -
webrick
/ log (168) - win32ole (12)
クラス
- Array (21)
- BasicObject (168)
- BasicSocket (216)
-
Net
:: IMAP :: BodyTypeBasic (156) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeMultipart (12) -
OpenSSL
:: OCSP :: BasicResponse (72) -
OpenSSL
:: OCSP :: Request (12) -
OpenSSL
:: OCSP :: Response (12) - String (12)
- Time (12)
-
WEBrick
:: BasicLog (168) -
WEBrick
:: CGI (12) -
WEBrick
:: HTTPAuth :: BasicAuth (60) -
WIN32OLE
_ PARAM (12)
モジュール
-
Net
:: HTTPHeader (24)
キーワード
- ! (12)
- != (12)
- << (12)
- == (12)
-
_ _ id _ _ (12) -
_ _ send _ _ (24) -
add
_ nonce (12) -
add
_ status (12) - authenticate (12)
-
basic
_ auth (12) - body (12)
- challenge (12)
-
check
_ nonce (12) - close (12)
-
connect
_ address (12) -
content
_ id (12) -
copy
_ nonce (12) - debug (12)
- debug? (12)
- description (12)
- disposition (12)
-
do
_ not _ reverse _ lookup (12) - encoding (12)
- equal? (12)
- error (12)
- error? (12)
- extension (12)
- fatal (12)
- fatal? (12)
- getpeereid (12)
- getpeername (12)
- getsockname (12)
- getsockopt (12)
- info (12)
- info? (12)
-
instance
_ eval (24) -
instance
_ exec (12) - language (12)
- level (12)
-
local
_ address (12) - log (12)
- logger (24)
- md5 (12)
-
media
_ subtype (12) -
media
_ type (12) -
method
_ missing (12) - multipart? (12)
- pack (21)
- param (12)
- parts (12)
-
proxy
_ basic _ auth (12) - realm (12)
- recv (12)
-
recv
_ nonblock (12) - recvmsg (12)
-
recvmsg
_ nonblock (12) -
remote
_ address (12) - retval? (12)
- send (12)
- sendmsg (12)
-
sendmsg
_ nonblock (12) - setsockopt (24)
- shutdown (12)
- sign (12)
-
singleton
_ method _ added (12) -
singleton
_ method _ removed (12) -
singleton
_ method _ undefined (12) - size (12)
- status (12)
- strftime (12)
- subtype (12)
- unpack (12)
- userdb (12)
- verify (12)
- warn (12)
- warn? (12)
検索結果
先頭5件
- OpenSSL
:: OCSP :: Response # basic -> OpenSSL :: OCSP :: BasicResponse | nil - Net
:: HTTPHeader # basic _ auth(account , password) -> [String] - Net
:: HTTPHeader # proxy _ basic _ auth(account , password) -> [String] - Net
:: IMAP :: BodyTypeBasic # encoding -> String - OpenSSL
:: OCSP :: BasicResponse # status -> [[OpenSSL :: OCSP :: CertificateId , Integer , Integer , Time|nil , Time , Time|nil , [OpenSSL :: X509 :: Extension]]]
-
OpenSSL
:: OCSP :: Response # basic -> OpenSSL :: OCSP :: BasicResponse | nil (18302.0) -
Response オブジェクトが保持している BasicResponse オブジェクトを 返します。
...Response オブジェクトが保持している BasicResponse オブジェクトを
返します。
@see OpenSSL::OCSP::BasicResponse... -
Net
:: HTTPHeader # basic _ auth(account , password) -> [String] (6230.0) -
Authorization: ヘッダを BASIC 認証用にセットします。
...Authorization: ヘッダを BASIC 認証用にセットします。
@param account アカウント名を文字列で与えます。
@param password パスワードを文字列で与えます。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net:......:HTTP::Get.new(uri.request_uri)
req.basic_auth("user", "pass") # => ["Basic dXNlcjpwYXNz"]
//}... -
Net
:: HTTPHeader # proxy _ basic _ auth(account , password) -> [String] (6230.0) -
Proxy 認証のために Proxy-Authorization: ヘッダをセットします。
...Proxy 認証のために Proxy-Authorization: ヘッダをセットします。
@param account アカウント名を文字列で与えます。
@param password パスワードを文字列で与えます。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html......')
req = Net::HTTP::Get.new(uri.request_uri)
req.proxy_basic_auth("account", "password") # => ["Basic YWNjb3VudDpwYXNzd29yZA=="]
//}... -
Net
:: IMAP :: BodyTypeBasic # encoding -> String (3133.0) -
Content-Transfer-Encoding の値を文字列で返します。
...Content-Transfer-Encoding の値を文字列で返します。
@see 2045... -
OpenSSL
:: OCSP :: BasicResponse # status -> [[OpenSSL :: OCSP :: CertificateId , Integer , Integer , Time|nil , Time , Time|nil , [OpenSSL :: X509 :: Extension]]] (3131.0) -
証明書の状態の問い合わせの結果を返します。
...の配列が渡されます。
結果をどのように解釈すべきか、より詳しくは 2560 や X.509 を見てください。
例:
res.basic.status
# => [
# [#<OpenSSL::OCSP::CertificateId:0x00000000e3c290>, # certificate ID
# 0,......# reason code
# nil, # revoked time
# 2011-06-29 05:24:43 UTC, # update time
# 2011-07-06 05:24:43 UTC, # next update time
# []]... -
BasicObject
# _ _ send _ _ (name , *args) -> object (3125.0) -
オブジェクトのメソッド name を args を引数にして呼び出し、メソッドの結果を返します。
...#delete) - delete " + args.join(',')
end
def send(name, *args)
"(Mail#send) - #{name} #{args.join(',')}"
end
end
mail = Mail.new
mail.send :delete, "gentle", "readers" # => "(Mail#send) - delete gentle,readers"
mail.__send__ :delete, "gentle", "readers" # => "(Mail#delete) - delete... -
BasicObject
# _ _ send _ _ (name , *args) { . . . . } -> object (3125.0) -
オブジェクトのメソッド name を args を引数にして呼び出し、メソッドの結果を返します。
...#delete) - delete " + args.join(',')
end
def send(name, *args)
"(Mail#send) - #{name} #{args.join(',')}"
end
end
mail = Mail.new
mail.send :delete, "gentle", "readers" # => "(Mail#send) - delete gentle,readers"
mail.__send__ :delete, "gentle", "readers" # => "(Mail#delete) - delete... -
Net
:: IMAP :: BodyTypeBasic # content _ id -> String | nil (3117.0) -
Content-ID の値を文字列で返します。
...Content-ID の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeBasic # description -> String | nil (3117.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045...