.net – 如何序列化邮件?

前端之家收集整理的这篇文章主要介绍了.net – 如何序列化邮件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当使用los foratter串连化一个mial消息时,我得到以下内容.

错误:Sys.WebForms.PageRequestManagerServerErrorException:错误序列化System.Net.Mail.MailMessage类型为“System.Net.Mail.MailMessage”的值.

有没有一个简单的方法来序列化这个对象,或者我要分别搜索每个ofhte属性

解决方法

可惜的是,System.Net.Mail.MailMessage类没有被标记为可序列化.所以,是的,你需要自己去做.以下博客文章中介绍的技术可以让您了解如何继续: How to Serialize a MailMessage …基本上,您将需要单独拉出每个属性.引用:

To serialize the properties of a MailMessage object you can create a
new class and create a property of MailMessage type for it that embeds
your MailMessage in the class. In this new class you can implement
IXmlSerializable interface to manually serialize its MailMessage. Here
I create this class and call it SerializableMailMessage […]

[code implementation of WriteXml() and ReadXml() methods follow; see source link]

原文链接:https://www.f2er.com/aspnet/246249.html

猜你在找的asp.Net相关文章