模块 Net::IMAP::Authenticators
从 Net::IMAP
到 Net::IMAP::SASL
的向后兼容委托器。
公共实例方法
add_authenticator(...) 点击切换源代码
已弃用。请改用 Net::IMAP::SASL.add_authenticator
。
# File net-imap-0.5.4/lib/net/imap/authenticators.rb, line 7 def add_authenticator(...) warn( "%s.%s is deprecated. Use %s.%s instead." % [ Net::IMAP, __method__, Net::IMAP::SASL, __method__ ], uplevel: 1, category: :deprecated ) Net::IMAP::SASL.add_authenticator(...) end
authenticator(...) 点击切换源代码
已弃用。请改用 Net::IMAP::SASL.authenticator
。
# File net-imap-0.5.4/lib/net/imap/authenticators.rb, line 18 def authenticator(...) warn( "%s.%s is deprecated. Use %s.%s instead." % [ Net::IMAP, __method__, Net::IMAP::SASL, __method__ ], uplevel: 1, category: :deprecated ) Net::IMAP::SASL.authenticator(...) end