您是否仍需要处理 .net v4 System.Net.Mail 中的附件?
在 .net v3.5 或更低版本中,使用 SMTP 客户端发送电子邮件后需要手动处理附件,这在 .net v4 中仍然需要吗?
With .net v3.5 or less it was required to manually dispose attachments after sending an email using SMTP client, is this still required in .net v4?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 MSDN,Dispose() 方法仍然存在于 .net 4 中,并且注释仍然说你应该调用它,所以我假设没有任何改变。
According to MSDN, the Dispose() method still exists in .net 4, and the notes still say you should call it, so I would assume nothing has changed.
是的。该类是 IDisposable 和 MSDN 示例仍然对其调用 Dispose。
Yes. The class is IDisposable and the MSDN example still calls Dispose on it.