252件ヒット
[201-252件を表示]
(0.073秒)
別のキーワード
クラス
-
Fiddle
:: Handle (36) -
Net
:: POP3 (36) -
Net
:: SMTP (84) - TracePoint (60)
キーワード
-
close
_ enabled? (12) -
disable
_ close (12) -
disable
_ ssl (24) -
disable
_ starttls (12) -
disable
_ tls (12) - enable (24)
-
enable
_ close (12) -
enable
_ config (24) -
enable
_ ssl (24) -
enable
_ tls (12) - enabled? (12)
-
garbage
_ collect (12) - ssl? (12)
- tls? (12)
-
use
_ ssl? (12)
検索結果
先頭5件
-
Net
:: SMTP # ssl? -> bool (7.0) -
その Net::SMTP オブジェクトが SMTPS を利用するならば真を返します。
...その Net::SMTP オブジェクトが SMTPS を利用するならば真を返します。
@see Net::SMTP#enable_tls, Net::SMTP#disable_tls, Net::SMTP#start... -
Net
:: SMTP # tls? -> bool (7.0) -
その Net::SMTP オブジェクトが SMTPS を利用するならば真を返します。
...その Net::SMTP オブジェクトが SMTPS を利用するならば真を返します。
@see Net::SMTP#enable_tls, Net::SMTP#disable_tls, Net::SMTP#start... -
TracePoint
# enable -> bool (7.0) -
self のトレースを有効にします。
...イベントフックのためのメソッドにブロックの外側で参照した場合は
RuntimeError が発生する事に注意してください。
//emlist[例][ruby]{
trace.enable { p trace.lineno }
# => RuntimeError: access from outside
//}
@see TracePoint#disable, TracePoint#enabled?... -
TracePoint
# enable { . . . } -> object (7.0) -
self のトレースを有効にします。
...イベントフックのためのメソッドにブロックの外側で参照した場合は
RuntimeError が発生する事に注意してください。
//emlist[例][ruby]{
trace.enable { p trace.lineno }
# => RuntimeError: access from outside
//}
@see TracePoint#disable, TracePoint#enabled?... -
TracePoint
# enabled? -> bool (7.0) -
self のトレースが有効な場合に true を、そうでない場合に false を返しま す。
...self のトレースが有効な場合に true を、そうでない場合に false を返しま
す。
@see TracePoint#enable, TracePoint#disable...