开发者

Does System.Net.Mail.SmtpClient support CRAM-MD5 authentication?

开发者 https://www.devze.com 2023-01-06 23:55 出处:网络
Does System.Net.Mail.SmtpClient support CRAM-MD5 authentication, and if so, do I开发者_C百科 need to do anything to enable it?

Does System.Net.Mail.SmtpClient support CRAM-MD5 authentication, and if so, do I开发者_C百科 need to do anything to enable it?

MSDN appears to be silent on the matter.


No, it's not supported (in .NET Framework 4.5.2).

Digging through the reference source of SmtpClient reveals that System.Net.Mail.SmtpConnection is used to create the SMTP connection. Its source shows that (only) the following authentication modes are supported:

  • LOGIN
  • NTLM
  • GSSAPI
  • WDIGEST
0

精彩评论

暂无评论...
验证码 换一张
取 消